
* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}


.opacity-10 {opacity: 0.1;}
.opacity-20 {opacity: 0.2;}
.opacity-30 {opacity: 0.3;}
.opacity-40 {opacity: 0.4;}
.opacity-50 {opacity: 0.5;}
.opacity-60 {opacity: 0.6;}
.opacity-70 {opacity: 0.7;}
.opacity-80 {opacity: 0.8;}
.opacity-90 {opacity: 0.9;}
.opacity-100 {opacity: 1;}

.color-red {
    color: #ff0000;
}
.color-blue {
    color: #0060b0;
}
.color-green {
    color: #00d000;
}


.default-content {
    position: relative;
    width: 100%;
}
.default-content.margin-top {
    margin-top: 10px;
}
.default-content.margin-bottom {
    margin-bottom: 10px;
}



.HardwareAcceleration {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}


input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaaaaa;
    opacity: 1; /* Firefox */
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aaaaaa;
}
input::-ms-input-placeholder { /* Microsoft Edge */
    color: #aaaaaa;
}

.hide-placeholder input::placeholder,
.placeholder-mobile input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255,255,255,0);
    opacity: 0; /* Firefox */
}
.hide-placeholder input:-ms-input-placeholder,
.placeholder-mobile input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255,255,255,0);
}
.hide-placeholder  input::-ms-input-placeholder,
.placeholder-mobile input::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255,255,255,0);
}



pre {
    position: relative;
    background-color: rgba(255,255,255,0.8);
    color: #444444;
    font-size: 13px;
    text-align: left;
}

.debug-fix {
    position: fixed;
    left: 0;
    top: 0;
    text-align: left;
    z-index: 99999;
    background-color: #ffffff;
    color: #111111;
    padding: 15px 20px;
}


.debug-info-box {
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: left;
    z-index: 99999;
    background-color: rgba(10,10,10,0.92);
    color: #f0f0f0;
}
.debug-info-box .inner {
    position: relative;
    padding: 15px 20px;
    font-family: 'Arial';
    font-size: 13px;
    line-height: normal;
}
.debug-info-box .inner span.title b,
.debug-info-box .inner span.title {
    position: relative;
    font-family: 'Arial';
    font-size: 15px;
    line-height: normal;
}
.debug-info-box .inner span.title {
    display: inline-block;
    margin: 5px 0;
}
.debug-info-box .inner span.fnc-name {
    display: inline-block;
    margin-top: 5px;
}
.debug-info-box .inner b {
    font-family: 'Arial';
    font-weight: bold;
    line-height: normal;
}


.nowrap {
    white-space: nowrap !important;
}



html,body {
    background-color:#101010;
    margin:0px;
    padding:0px;
    width: 100%;
    height: auto;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color:#f0f0f0;
    text-align: center;
    overflow: visible;
}

b {
    font-weight: 700 !important;
}


.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #999999;
    border-color: #999999 transparent #999999 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.click-event,
.button,
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}



a:link,
a:visited,
a {
    color: #0074be !important;
    text-decoration: underline !important;
}
a:hover {
    color: #1094de !important;
    text-decoration: none !important;
}




a.button:link,
a.button:visited,
a.button {
    text-decoration: none !important;
}
a.button:hover {
    text-decoration: none !important;
}

a.button.is-info,
a.button.is-info:link,
a.button.is-info:visited,
a.button.is-info:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}


.content {
    position: relative;
    width: 100%;
    height: auto;
    text-align: left;
}

.content .inner {
    position: relative;
    width: auto;
    height: auto;
    padding: 15px 20px;
}



.loader {
    z-index: 99999;
    display: block;
    position: fixed;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    opacity: 0;
    pointer-events: none !important;
    -webkit-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
}


body .page {
    opacity: 1;
    -webkit-transition: opacity 300ms ease-in-out;
    -ms-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    position: relative;
    min-height: 100vh;
    padding-bottom: 0px;
    overflow: visible;
}
body.show-loader .loader {
    opacity: 1;
}
body.show-loader .page {
    pointer-events: none;
    opacity: 0.4;
}
body.show-loader {
    pointer-events: none;
}

body.show-ajax-loader .loader {
    opacity: 1;
}


body.show-loader.body-profile .page,
body.show-loader.body-chat .page {
    opacity: 1 !important;
}
body.show-loader.body-profile .inner.opacity-ani.chat-main-content,
body.show-loader.body-chat .inner.opacity-ani.chat-main-content {
    opacity: 0.5 !important;
}


.c100vh {
    min-height: 100vh !important;
}

.content .inner.max-w {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.content .inner.has-navi {
    width: calc(100% - 180px);
    max-width: 100%;
    margin: 0;
    float: left;
    top: 0;
    left: 180px;
    overflow: visible;
}

.navi {
    display: inline-block;
    position: fixed;
    width: 180px;
    max-width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    margin: 0;
    background-color: rgba(25,25,25,0.9);
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(5,5,5,0.2);
    color: #ffffff;
}

.navi .inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 7px 7px;
}

.navi .navi-item {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 7px 7px;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    text-align: left;
    font-size: 16px;
    color: #aaaaaa;
}
.navi .navi-item:hover {
    color: #dddddd;
    background-color: #252525;
}
.navi .navi-item.active {
    color: #ffffff !important;
    background-color: #292929 !important;
}

.navi .navi-item.margin-top {
    margin-top: 15px !important;
}

.navi .navi-item span.icon {
    display: inline-block;
    position: relative;
    width: 22px;
    text-align: left;
}

.navi .navi-info-item {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 14px 7px;
}
.navi .navi-info-item span {
    display: inline-block;
    position: relative;
    width: 100%;
}
.navi .navi-info-item .user-group {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 7px;
}
.navi .navi-info-item .user-name {
    font-weight: 300;
    font-size: 12px;
}

.navi .navi-info-item.logo {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 7px;
    padding-bottom: 5px;
}

.navi .navi-item-br {
    position: relative;
    width: 100%;
    height: 9px;
    margin-bottom: 9px;
    border-bottom: 1px solid #202020;
    overflow: hidden;
}

.navi .bottom {
    display: inline-block;
    position: fixed;
    width: 250px;
    max-width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
}
.navi .bottom .version {
    display: inline-block;
    position: relative;
    padding: 7px 7px;
    font-size: 12px;
    font-weight: 300;
}

.content-white-box {
    display: inline-block;
    position: relative;
    width: 100%;
    border-radius: 5px;
    background-color: rgba(100,100,100,0.8);
    overflow: hidden;
    margin-top: 0px;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.1);
}
.content-white-box .inner {
    position: relative;
    padding: 20px 25px;
}
.content-white-box.margin-top {
    margin-top: 40px;
}
.content-white-box.margin-bottom {
    margin-bottom: 40px;
}

.content-white-box.content-white-box-center {
    display: inline-block;
    position: fixed;
    width: 100%;
    max-width: 600px;
    left: calc(50% - 300px);
    top: calc(50% - 200px);
}
.content-white-box.content-white-box-center.small {
    max-width: 400px;
    left: calc(50% - 200px);
    top: calc(50% - 130px);
}
.content-white-box.small50 {
    max-width: 50%;
}
.content-white-box.content-white-box-center.login {
    max-width: 400px;
    left: calc(50% - 200px);
    top: calc(50% - 130px);
}

.content-white-box.user-create-box {
    width: 100% !important;
    max-width: 700px !important;
}


.content-white-box.content-white-box-center.login .left-box {
    width: 166px;
    position: relative;
    float: left;
}
.content-white-box.content-white-box-center.login .right-box {
    width: calc(100% - 166px);
    position: relative;
    padding-left: 23px;
    float: left;
}
.content-white-box.content-white-box-center.login .left-box img {
    position: relative;
    width: 100%;
    height: auto;
}

h1,h2,h3,h4,h5 {
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
}

h1 .icon,h2 .icon,h3 .icon,h4 .icon,h5 .icon {
    font-weight: normal !important;
    display: inline-block;
    position: relative;
}
h1 .icon {
    width: 42px;
}
h1.page-title {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 20px !important;
}
h2 .icon {
    width: 30px;
}
h2.page-title {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 15px !important;
}

.p100 {
    width: 100%;
}

.margin-left {
    margin-left: 10px;
}
.margin-right {
    margin-right: 10px;
}

.margin-right20 {
    position: relative;
    margin-right: 20px;
}
.margin-right30 {
    position: relative;
    margin-right: 30px;
}

.content-left {
    position: relative;
    width: calc(50% - 10px);
    height: auto;
    float: left;
}
.content-right {
    position: relative;
    width: calc(50% - 10px);
    margin-left: 20px;
    height: auto;
    float: left;
}
.content-box-b {
    position: relative;
    width: 100%;
    height: auto;
    border: 2px dashed rgba(25,25,25,0.5);
    background-color: rgba(255,255,255,0.9);
}
.content-box-b.margin-bottom {
    margin-bottom: 23px;
}

.content-lr-inner {
    position: relative;
    width: 100%;
    padding: 10px 15px;
}


.button {
    position: relative;
    background-color: #eeeeee;
    color: #111111;
    border: 1px solid #e0e0e0;
    padding: 7px 10px;
    cursor: pointer;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.button:hover {
    background-color: #e7e7e7;
}

.button.red {
    background-color: #ff5000;
    color: #ffffff;
    border: none;
}
.button.red:hover {
    background-color: #ef4000;
}
input.button.red {
    border: 1px solid #ff5000;
}


.button.green {
    background-color: #00d000;
    color: #ffffff;
    border: none;
}
.button.green:hover {
    background-color: #00c000;
}

.button.blue {
    background-color: #006090;
    color: #ffffff;
    border: none;
}
input.button.blue {
    border: 1px solid #006090;
}
.button.blue:hover {
    background-color: #005080;
}



.clear-all {
    float: none;
    clear: both;
}


.disabled {
    pointer-events: none !important;
    opacity: 0.5 !important;
}


.home-bg {
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: repeat;
    background-size: 190px;
    background-position: center center;
    width: 100vw;
    height: 100vh;
    opacity: 0.6;
}


.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}


.home-box {
    position: relative;
    padding-top: 15vh !important;
}

.home-box .title {
    position: relative;
    font-size: 70px;
    font-weight: normal;
    line-height: normal;
}

.home-box .info {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: normal;
    line-height: normal;
    color: #444444;
}
.home-box .info h4 {
    font-size: 22px;
    font-weight: normal;
    line-height: 22px;
    margin: 0 0 10px 0 !important;
    padding: 0;
}




.cookies-info-box {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(20,20,20,0.9);
    z-index: -1;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
.cookies-info-box a {
    pointer-events: none !important;
}

.cookies-info-box.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 9990;
}
.cookies-info-box.active a {
    pointer-events: auto !important;
}
.cookies-info-box .inner {
    position: relative;
    padding: 20px 20px;
    margin: 0;
}

.cookies-info-box a.button {
    position: relative;
    color: #ffffff !important;
    background-color: #606060;
    border: 1px solid #606060;
    border-radius: 5px;
    padding: 3px 9px;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    white-space: nowrap;
}
.cookies-info-box a.button:hover {
    background-color: #707070;
    border: 1px solid #707070;
}
.cookies-info-box a.link {
    position: relative;
    color: #e0e0e0 !important;
}


.opacity-ani {
    opacity: 0;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}



.effect-bounce-init {
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    transform: scale(0.7, 0.7) !important;
}
.effect-bounce-start {
    opacity: 0.9 !important;
    transform: scale(1.1, 1.1) !important;
}
.effect-bounce-end {
    -webkit-transition-duration: 0.1s !important;
    transition-duration: 0.1s !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1.0, 1.0) !important;
}


.page-front-deactive {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    z-index: 999;
    top: 0;
    left: 0;
    pointer-events: none;
}





span.error-color {
    color: #f00000;
}

span.big-title {
    font-size: 19px;
}


.content-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.content-box.content-box-items {
    width: calc(100% + 10px);
    overflow: hidden;
    white-space: nowrap;
}
.content-box.margin-bottom {
    margin-bottom: 10px;
}


i.click-event {
    cursor: pointer;
    font-weight: normal;
    color: #666666;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
i.click-event:hover {
    color: #333333;
}

.action-icons i {
    margin-left: 9px !important;
}

.form_frontend_user.default-form .form_title {
    display: inline-block;
    position: relative;
    margin-bottom: 15px !important;
    width: 100%;
}

.form_frontend_user.default-form .edit_user_title,
.form_frontend_user.default-form .form-field.frontend_edituser_button {
    display: none !important;
}

.form_frontend_user.default-form.edit_mode .edit_user_title,
.form_frontend_user.default-form.edit_mode .form-field.frontend_edituser_button {
    display: inline-block !important;
}
.form_frontend_user.default-form.edit_mode .create_user_title,
.form_frontend_user.default-form.edit_mode .form-field.frontend_createuser_button {
    display: none !important;
}


.form_frontend_user .form-field-error {
    display: none;
}


body.show-loader .default-message-box textarea,
body.show-loader .default-message-box select,
body.show-loader .default-message-box input,
body.show-loader .default-message-box {
    pointer-events: none !important;
}


.box-shadow {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}
.box-shadow2 {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.13);
}

.logout-button {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin-left: 20px;
}

.pv-user-info {
    position: fixed;
    right: 20px;
    top: 17px;
    z-index: 900;
    font-size: 14px;
    font-weight: normal;
}


.pv-header {
    position: fixed;
    width: 100%;
    height: 50px;
    left: 0;
    top: 0;
    background-color: rgba(25,25,25,0.9);
    padding-left: 20px;
    padding-top: 10px;
    z-index: 999;
    color: #ffffff;
}
.pv-users-search {
    position: fixed;
    width: 230px;
    height: 40px;
    border: 2px dashed rgba(25,25,25,0.5);
    background-color: rgba(255,255,255,0.9);
    overflow: hidden;
    left: 20px;
    top: 70px;
}
.pv-users-search .inner {
    padding: 0;
}
.pv-users-search .inner input {
    float: left;
    display: inline-block;
    position: relative;
    padding: 0 15px;
    width: calc(100% - 40px);
    height: 38px;
    border: none !important;
    font-size: 14px;
    color: #333333;
}
.pv-users-search i.fa {
    position: relative;
    font-size: 18px;
    color: #555555;
    margin-top: 9px;
}
.pv-users-search .search-icon {
    float: left;
    display: inline-block;
    position: relative;
    margin-left: 0;
    pointer-events: none;
    width: 40px;
    height: 38px;
    text-align: center;
}
.pv-users-list {
    position: fixed;
    width: 230px;
    height: calc(100vh - 140px);
    border: 2px dashed rgba(25,25,25,0.5);
    background-color: rgba(255,255,255,0.9);
    overflow-y: auto;
    overflow-x: hidden;
    left: 20px;
    top: 120px;
}
.pv-users-list .inner {
    padding: 0;
}
.pv-input-box {
    position: relative;
    width: calc(100% - 250px);
    height: 100%;
    margin-left: 250px;
    margin-top: 55px;
    margin-bottom: 65px;
    float: left;
    border: 2px dashed rgba(25,25,25,0.5);
    background-color: rgba(255,255,255,0.9);
}

.pv-users-list .pv-user-item {
    width: 100%;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px dashed #dadada;
    background-color: rgba(255,255,255,0.9);
}
.pv-users-list .pv-user-item.has-status {
    padding-left: 48px;
}
.pv-users-list .pv-user-item:hover {
    background-color: rgba(230,230,230,0.2);
}
.pv-users-list .pv-user-item.active {
    background-color: rgba(230,230,230,0.5);
    color: #111111;
}
.pv-users-list .pv-user-item.hide_me {
    display: none !important;
}

.pv-users-list .pv-user-item .sent_status,
.pv-users-list .pv-user-item .replacement_status {
    position: absolute;
    left: 7px;
    width: 16px;
    height: 16px;
    background-color: #ff0000;
    font-size: 10px;
    text-align: center;
    line-height: 16px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 3px;
}
.pv-users-list .pv-user-item .sent_status {
    left: 27px !important;
}
.pv-users-list .pv-user-item .sent_status.red,
.pv-users-list .pv-user-item .replacement_status.red {
    background-color: #ff0000;
}
.pv-users-list .pv-user-item .sent_status.orange,
.pv-users-list .pv-user-item .replacement_status.orange {
    background-color: #ff9000;
}
.pv-users-list .pv-user-item .sent_status.green,
.pv-users-list .pv-user-item .replacement_status.green {
    background-color: #00d000;
}
.pv-users-list .pv-user-item .sent_status.blue,
.pv-users-list .pv-user-item .replacement_status.blue {
    background-color: #0080ff;
}

body.user-is-admin .pv-user-info {
    display: none !important;
}

.pv-header .cc-logo {
    display: inline-block;
    position: absolute;
    height: calc(100% - 16px);
    width: auto;
    left: 20px;
    top: 8px;
}
.pv-header h1.page-title {
    position: relative;
    margin-left: 56px !important;
    top: -1px;
}
.pv-header h1.page-title .icon {
    display: none;
}



body.user-is-admin .pv-header .cc-logo {
    display: none !important;
}
body.user-is-admin .pv-header h1.page-title {
    position: relative;
    margin-left: 0px !important;
    top: 0;
}
body.user-is-admin .pv-header h1.page-title .icon {
    display: inline-block;
}

body.user-is-admin .pv-header {
    position: fixed;
    width: 100%;
    height: 50px;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0) !important;
    padding-left: 210px;
    padding-top: 10px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
    color: #333333;
}
body.user-is-admin .pv-users-search {
    position: fixed;
    width: 230px;
    height: 40px;
    left: 210px;
    top: 65px;
}
body.user-is-admin .pv-users-list {
    position: fixed;
    width: 230px;
    height: calc(100vh - 130px);
    left: 210px;
    top: 115px;
}
body.user-is-admin .pv-input-box {
    position: relative;
    width: calc(100% - 250px);
    height: 100%;
    margin-left: 250px;
    margin-top: 50px;
}



.pv-input-box .pv-address {
    display: table-cell;
    position: relative;
    width: 40%;
    height: auto;
    min-height: 100%;
    vertical-align: top;
    border-right: 1px dashed #bbbbbb;
    padding: 22px 25px;
}
.pv-input-box .pv-delivery_address {
    display: table-cell;
    position: relative;
    width: 40%;
    height: auto;
    min-height: 100%;
    vertical-align: top;
    border-right: 1px dashed #bbbbbb;
    padding: 22px 25px;
}
.pv-input-box .pv-production_info {
    display: table-cell;
    position: relative;
    width: 20%;
    height: auto;
    min-height: 100%;
    vertical-align: top;
    padding: 22px 25px;
}

.pv-input-box h2 {
    position: relative;
    width: 100%;
    margin-bottom: 10px !important;
}
.pv-input-box h2.margin-top {
    margin-top: 10px !important;
}

.content .pv-input-box .inner {
    padding: 20px 25px;
}


.default-form.address .form-field input {
    height: 32px;
}
.default-form.address .form-field select {
    height: 32px;
    padding-top: 6px;
}

.default-form .form-field.p50 .left {
    width: 50%;
    padding-right: 8px;
}
.default-form .form-field.p50 .right {
    width: 50%;
    padding-left: 8px;
}


.default-form .form-field.street .left {
    width: 70%;
}
.default-form .form-field.street .right {
    width: 30%;
}
.default-form .form-field.city .left {
    width: 30%;
}
.default-form .form-field.city .right {
    width: 70%;
}

.default-form .form-field.city.has-country .left {
    width: 20%;
}
.default-form .form-field.city.has-country .right {
    width: 40%;
}
.default-form .form-field.city.has-country .right.country {
    width: 40%;
    padding-left: 15px;
}


.display-table {
    display: table !important;
}
.display-table-row {
    display: table-row !important;
}

.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}



/* width */
.scroll-content::-webkit-scrollbar {
    width: 8px;
}
/* Track */
.scroll-content::-webkit-scrollbar-track {
    background: transparent;
}
/* Handle */
.scroll-content::-webkit-scrollbar-thumb {
    background: #888;
}
/* Handle on hover */
.scroll-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.table-row.group_99 {
    color: #ff0000;
}


.select-cube-info-box {
    position: relative;
    width: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}


.autosave_data_info {
    position: fixed;
    right: 48%;
    top: 6px;
    background-color: rgba(255,255,0,1);
    color: #111111;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid rgba(255,235,0,1);
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    pointer-events: none;
    z-index: 9999;
}
.autosave_data_info.is_error {
    border: 1px solid rgba(255,140,0,1);
    background-color: rgba(255,180,0,1);
}
body.user-login.user-is-admin .autosave_data_info {
    right: 20px;
    top: 15px;
}

.autosave_data_info.show {
    opacity: 1;
}
.autosave_data_info_text {
    position: relative;
    padding: 9px 15px 9px 34px;
}
.autosave_data_info_text i {
    position: absolute;
    font-size: 18px;
    left: 10px;
    top: 8px;
}

.absolute_bottom_buttons {
    position: absolute;
    right: -1px;
    bottom: -55px;
}

.button.form_delete_button,
.button.form_save_changes_button {
    position: relative;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    padding: 0 19px !important;
    border-radius: 3px;
    float: right;
}
.button.form_delete_button.margin-right,
.button.form_save_changes_button.margin-right {
    margin-right: 20px !important;
}
.button.form_delete_button.margin-left,
.button.form_save_changes_button.margin-left {
    margin-left: 20px !important;
}

.cube-item {
    position: relative;
    width: 100%;
    height: auto;
    padding: 9px 5px;
    border-top: 1px dashed #d0d0d0;
    background-color: #ffffff;
    cursor: pointer;
}
.cube-item:hover {
    background-color: #f9f9f9;
}
.cube-item .cube-item-date {
    position: relative;
    float: right;
    color: #666666;
}

h2.margin-bottom {
    position: relative !important;
    margin-bottom: 9px !important;
}

.no-click-event {
    cursor: default !important;
}

.user_url_activity_info {
    display: none;
}
.user_url_activity_info.show {
    display: block;
}
.production.user_url_activity_info {
    position: absolute;
    width: auto;
    white-space: nowrap;
    left: 0;
    bottom: -50px;
}
.production.user_url_activity_info .user_url_activity_info_title {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    color: #555555;
    width: 100%;
    margin-bottom: 3px;
}
.production.user_url_activity_info .user_url_activity_info_items {
    position: relative;
    font-size: 12px;
    color: #333333;
    width: 100%
}
.production.user_url_activity_info .user_url_activity {
    display: inline-block;
    position: relative;
}

.api-info-box {
    display: none;
    position: fixed;
    width: 940px;
    height: auto;
    left: calc(50vw - 470px);
    top: calc(50vh - 230px);
    z-index: 99999;
    background-color: rgba(255,255,200,0.99);
    border: 2px solid rgba(80,80,80,0.99);
    box-shadow: 0px 0px 15px rgba(25,25,25,0.2);
}
.api-info-box.active {
    display: block;
}
.api-info-box-close {
    display: block;
    position: absolute;
    width: 31px;
    height: 31px;
    right: 1px;
    top: 1px;
    z-index: 99999;
    background-color: rgba(50,50,50,0.99);
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    line-height: 35px;
    overflow: hidden;
}
.api-info-box-close i.fa {
    font-size: 18px;
}
.api-info-box pre {
    position: relative !important;
    text-align:left !important;
    display: inline-block !important;
    font-size: 12px !important;
    padding: 10px 15px !important;
    background-color: transparent !important;
    background: transparent !important;
}

span.info-text {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    margin-left: 15px;
    cursor: pointer;
    text-decoration: underline;
    color: #666666;
}



.default-form .input.product_status_pending {
    background-color: #ffa000;
}
.default-form .input.product_status_active {
    background-color: #00f000;
}

select.select {
    position: relative;
    padding: 7px;
    border: 1px solid #505050;
    background-color: transparent;
    color: #f0f0f0;
    cursor: pointer;
    border-radius: 0 !important;
}
select.select option {
    position: relative;
    padding: 5px;
    border: 1px solid #505050;
    border-radius: 0 !important;
    background-color: #151515;
    color: #f0f0f0;
    cursor: pointer;
}
select.select.margin-bottom {
    margin-bottom: 20px;
}

.lr-content {
    position: relative;
    display: inline-block;
    width: 100%;
}
.lr-content .left {
    position: relative;
    display: inline-block;
    float: left;
    width: calc(100% - 640px);
}
.lr-content .right {
    position: relative;
    display: inline-block;
    float: left;
    width: 640px;
    white-space: nowrap;
}

input[name=search] {
    position: relative;
    width: 190px;
    padding: 8px 9px;
    border: 1px solid #505050;
    background-color: transparent;
    color: #f0f0f0;
    border-radius: 0 !important;
}
input[name=search].margin-right {
    margin-right: 40px;
}

.table-row input[name=dsl],
.table-row input[name=canceled],
.table-row input[name=contract] {
    cursor: pointer;
    -ms-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.scroll_top_button {
    position: fixed;
    left: 75px;
    top: -400px;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    overflow: hidden;
    background-color: rgb(200,240,250);
    background-image: url("/arrow_up.png");
    background-size: 54%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.8);
    cursor: pointer;
    -webkit-transition: opacity 150ms ease-in-out;
    -ms-transition: opacity 150ms ease-in-out;
    -moz-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    opacity: 0.0;
}
.scroll_top_button.active {
    top: calc(100% - 70px);
    opacity: 0.6;
}
.scroll_top_button.active:hover {
    opacity: 0.96;
}

.page_opacity {
    position: fixed;
    left: -100px;
    top: 0;
    width: 1px;
    height: 1px;
    background-color: #050505;
    opacity: 0;
    z-index: 9990;
    -webkit-transition: opacity 200ms ease-in-out;
    -ms-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
}

.page_opacity.active {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.page_opacity.active.opacity_0 {
    opacity: 0 !important;
}

.checkbox_list {
    position: relative;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.checkbox_list_item {
    position: relative;
    width: 100%;
}
.checkbox_list .left {
    width: 80% !important;
    text-align: left;
}
.checkbox_list .right {
    width: 20% !important;
    text-align: right;
}

.checkbox_list input[type=checkbox] {
    cursor: pointer;
}

.header_info_message {
    z-index: 999999;
    display: none;
    position: fixed;
    left: calc(50vw - 400px);
    top: 0;
    width: 800px;
    height: auto;
    background-color: rgba(255,255,255,0.95);
    padding: 25px;
    opacity: 0;
    -webkit-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.7);
}
.header_info_message .header_info_message_content {
    text-align: center;
    font-size: 14px;
    color: #303030;
}
.header_info_message .header_info_message_content span.title {
    font-size: 14px;
    font-weight: bold;
}
