/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');


*{-webkit-box-sizing:border-box;box-sizing:border-box;}
html{
    font-size:62.5%;
}
html,body{
    margin:0;
    padding:0;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    color: #353535;
    background-color: #f3f3f3;
    min-height: 100vh;
    padding: 112px 0 40px;
}
body.login {
    padding: 0;
}
.sw {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
.sw.xs{
    max-width:500px;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5,h6, .widget-title{
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    margin:0;
}
h1 {
    margin: 0 0 20px 0;
    font-size: 3rem;
    color: #353535;
}
h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    color: #353535;
    margin: 0 0 20px 0;
}
h3{
    margin:0 0 15px 0;
}
*:focus{
    outline:none;
}
.input_wrap {
    margin: 0 0 15px 0;
}

/* Buttons */
.button, button, input[type="submit"] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 5px 20px;
    font-size: 1.6rem;
    line-height: 1.5;
    border-radius: 3px;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    appearance: none;
    color: #fff;
    background-color: #ff2446;
    border-color: #ff2446;
}
.button:hover, button:hover, input[type="submit"]:hover {
    color: #fff;
    background-color: rgba(255, 36, 70, 0.8);
    border-color: #ff2446;
    cursor: pointer;
}
.button:focus, button:focus, input[type="submit"]:focus {
    -webkit-box-shadow: 0 0 0 0.15rem rgba(255, 36, 70, 0.8);
            box-shadow: 0 0 0 0.15rem rgba(255, 36, 70, 0.8);
}
button.highlight {
    background: rgba(255 36 70, 0.8);
}

/* Inputs */
::-webkit-input-placeholder {
    color: #d4d4d4;
}
::-moz-placeholder {
    color: #d4d4d4;
}
:-ms-input-placeholder {
    color: #d4d4d4;
}
::-ms-input-placeholder {
    color: #d4d4d4;
}
::placeholder {
    color: #d4d4d4;
}
select {
    height: 40px;
}
.formInput {
    margin: 0 0 20px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 20px;
}
label {
    margin-bottom: 3px;
    display: block;
    color: #303030;
    font-size: 14px;
    font-weight: 600;
    font-family:inherit;
}
label span {
    color: #898989;
    font-size: 1.2rem;
    font-weight: 300;
}
.formInput.error label {
    color: #ff2446;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select, input[type="number"] {
    width: 100%!important;
    -webkit-appearance: none!important;
    border: none;
    padding: 7px 15px!important;
    border-radius: 3px!important;
    background: #fff!important;
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #ccc;
}
textarea{
    width: 100%;
    -webkit-appearance: none!important;
    border: none;
    padding: 7px 15px!important;
    min-height: 110px;
    border-radius: 3px;
    background: #fff;
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #ccc;
}
select {
    width: 100%!important;
    -webkit-appearance: auto!important;
}
input:focus,
textarea:focus {
    -webkit-box-shadow: 0 0 10px #00000026;
            box-shadow: 0 0 10px #00000026;
}


input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
input[type="checkbox"]:checked{
    background-image:url(../images/icons/check.svg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:14px auto;
}
select option{
    padding:5px 12px;
}
select option[value="-1"] {
    background: #000000;
    color: #fff;
}
ul li {
    margin: 0;
    padding: 0;
}
ul {
    padding: 0 0 0 20px;
    margin: 0 0 15px 0;
}
p,.text {
    font-size: 1.5rem;
    line-height: 2.6rem;
    margin: 0 0 15px 0;
}
p:last-child{
    margin:0;
}
.text-wrapper p:last-child {
    margin: 0;
}
.form-error:empty{
    display:none;
}
.form-error{
    
}



/* Login */
body.login main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    padding: 0;
}
body.login .left {
    width: 50%;
    height: 100%;
    position: relative;
    background: #fff;
}
body.login .right {
    width: 50%;
    height: 100%;
    position: relative;
    background: url(https://images.unsplash.com/photo-1478145046317-39f10e56b5e9?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=2134&q=80);
    background-size: cover;
}
body.login .login-widget {
    border-radius: 0;
    overflow: hidden;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    width: 300px;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
@media (max-width: 767.8px) {
    body.login main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    body.login .login-widget {
        position: relative;
        margin: 50px auto;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        left: unset;
        top: unset;
    }
    body.login .left {
        width: 100%;
        height: auto;
    }
    body.login .right {
        width: 100%;
        height: 100%;
    }
}


/*General elements*/
main{
    display:block;
}


/*Basic styling*/
.widget-content{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
            box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
    padding: 20px;
    background-color: #fff;
    margin: 0 0 20px 0;
}
.widget {
    display: none;
}
.widget.loaded{
    display: block;;
}
.widget-title {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: bold;
    margin: 0 0 10px 0;
}
.go-back-link {
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 15px 5px 0;
}
/*Portal main styling*/

header {
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #cccccc;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 3;
    height: 53px;
}
header .flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
header .logo {
    display: block;
    font-size: 0;
    line-height: 0;
}
header .logo img {
    width: 200px;
}
header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0;
    padding: 0;
}
header nav ul li {
    list-style: none;
    margin: 0 5px;
}
header nav ul li a {
    color: #878787;
    text-decoration: none;
    display: block;
    padding: 5px 15px;
}
header nav ul li a.active {
    background: #eaeaea;
    border-radius: 100px;
    color: #353535;
}
header nav ul li a:hover {
    color: #353535;
}


/* Page navigatoin */
.page-navigation {
    padding: 5px 0;
    background: #ff2446;
    border-bottom: 1px solid #cccccc;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 53px;
    z-index: 1;
}
.page-navigation .flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.page-navigation nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin: 0;
    padding: 0;
}
.page-navigation nav ul li {
    list-style: none;
    margin: 0 5px;
}
.page-navigation nav ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 15px;
}
.page-navigation nav ul li a.active {
    background: #ff6574;
    border-radius: 100px;
    color: #ffffff;
}


/*Main*/
body.portal main{
    display: block;
}
/*Custom scrollbars*/
body.portal main::-webkit-scrollbar{
    width: 4px;
}
body.portal main::-webkit-scrollbar-track,body.portal main::-webkit-scrollbar{
    background-color: #cecece;
}
body.portal main::-webkit-scrollbar-thumb{
    background-color:#9c9c9c;   
}
.month_select {
    display: flex;
    justify-content: space-between;
    margin: 0 0 15px 0;
}

.month_select select {
    width: calc(50% - 10px)!important;
}
td.no_data_found {
    text-align: left!important;
}

/*Pop ups*/
.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000d1;
    z-index: 1;
}
.pop-up-inner {
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    padding: 40px;
    border-radius: 5px;
}
.pop-up-title {
    padding-bottom: 20px;
    font-size: 2.4rem;
    line-height: 4rem;
    font-weight: bold;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-size:16px auto;
    background-repeat:no-repeat;
    background-position:center;
    background-image:url(../images/icons/hidepopup.svg);
    cursor: pointer;
}


/*Orders page*/
.widget-lastupdate {
    float: right;
    font-size: 1.2rem;
    line-height: 3rem;
    color: #919191;
}
.widget-lastupdate:empty{
    display:none;
}
.orders-widget .widget-content {
    background: none;
    border: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.order-overview.order-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.order-overview.order-header {
    padding: 10px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    border-right: 3px solid transparent;
}
.order-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    -webkit-box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
            box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
    cursor: pointer;
}
.order-line:hover {
    background: #f7f7f7;
    -webkit-box-shadow: 0 0 10px 0 rgb(53 53 53 / 10%);
            box-shadow: 0 0 10px 0 rgb(53 53 53 / 10%);
}
.order-line.no-orders-line{
    justify-content: flex-start;
    padding-left: 15px;
}
.order-line.no-orders-line:hover{
    background-color:#fff;
    cursor:default;
    box-shadow:0;
}
.no-orders {
    height: 34px;
    line-height: 34px;
}
.order-date {
    width: 100px;
}
.order-ref {
    width: 100px;
}
.order-phone {
    width: 120px;
}
.order-total {
    width: 100px;
    text-align: right;
    padding-right: 20px;
}
.order-status {
    width: 100px;
}
.order-method {
    width: 100px;
}
.order-date_date {
    font-weight: 600;
}
.order-date_time {
    color: #878787;
}
.order-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 620px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.order-name {
    width: 35%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-message {
    width: 65%;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-body .order-ref {
    color: #878787;
    font-size: 1.2rem;
}
.order-body .order-status span {
    display: block;
    margin-right: 15px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}
.order-body .order-status span:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #000;
    position: absolute;
    left: 0;
    top: 3px;
}
.order-body .order-status[data-status="0"] span:before {
    background: #ff2446;
    -webkit-box-shadow: 0 0 5px 1px #ff244680;
            box-shadow: 0 0 5px 1px #ff244680;
}
.order-body .order-status[data-status="1"] span:before {
    background: #ff7417;
    -webkit-box-shadow: 0 0 5px 1px #ff741780;
            box-shadow: 0 0 5px 1px #ff741780;
}
.order-body .order-status[data-status="2"] span:before {
    background: #0fad24;
    -webkit-box-shadow: 0 0 5px 1px #0fad2480;
            box-shadow: 0 0 5px 1px #0fad2480;
}
.order-body .order-status span i {
    font-size: 0.8rem;
    line-height: 1rem;
    position: absolute;
    top: 15px;
    left: 20px;
    color: #a7a7a7;
    font-weight: normal;
}
.order-body .order-line {
    border-right: 3px solid transparent;
}
.order-body .order-line[data-status="0"] {
    border-right: 3px solid #ff2446;
}
.order-body .order-line.pulse[data-status="0"] {
    animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
    background-color: #fff;
    
}
50% {
    background-color: #ff244685;
}
100% {
    background-color: #fff;
}
}
.order-body .order-line[data-status="1"] {
    border-right: 3px solid #ff7417;
}
.order-body .order-line[data-status="2"] {
    border-right: 3px solid #0fad24;
}
.order-body .order-method span {
    display: block;
    margin-right: 15px;
    text-align: center;
}
.order-body .order-method[data-method="0"] span {
    background: #2196f330;
    padding: 5px 12px;
    border-radius: 100px;
    color: #2196f3;
    border: 1px solid #2196f3;
    font-size: 1.2rem;
}
.order-body .order-method[data-method="1"] span {
    background: #ea19a130;
    padding: 5px 12px;
    border-radius: 100px;
    color: #ea19a1;
    border: 1px solid #ea19a1;
    font-size: 1.2rem;
}




/*Order detail*/
.print-icon {
    width: 30px;
    height: 30px;
    background-color: #ff2446;
    background-image: url(../images/icons/print.svg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    float: right;
    cursor: pointer;
}
.data-label {
    font-weight: bold;
}
.order-detail-data-row {
    margin-bottom: 20px;
    width: 25%;
}
.order-detail-data-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.order-row.order-header {
    padding: 10px 15px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.order-row-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    -webkit-box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
            box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
}
.order-row-line.total-line {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-weight: bold;
}
.order-row-product {
    width: calc(100% - 280px);
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.order-row-product div {
    margin-right: 10px;
}
.order-row-product span {
    font-weight: 500;
    color: #878787;
}
.order-row-product span:after {
    content: ', ';
    width: 8px;
    display: inline-block;
}
.order-row-product span:last-child:after {
    display: none;
}
.order-row-price {
    width: 100px;
    text-align: right;
}
.order-row-count{
    width: 80px;
    text-align: right;
}
.order-row-total {
    width: 100px;
    text-align: right;
}
.order-detail-contact-link{
    text-decoration:none;
    display:inline-block;
    line-height:24px;
    color:#353535;
}


/*Translations page*/
.translation {
    margin: 0 0 15px 0;
}

/*Setting*/
.settings-widget .widget-content,
.varcharsettings-widget .widget-content {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
}
.setting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 10px;
    border-top:0;
    -webkit-box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
            box-shadow: 0 0 10px 0 rgb(53 53 53 / 5%);
    background: #fff;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 1.4rem;
    line-height: 2rem;
}
.setting_id {
    font-weight: bold;
    margin-right: 10px;
}
.setting_id:before {
    content: '#';
}
.setting_name {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.setting_name span {
    color: #878787;
    margin-left: 10px;
}
.setting_input input[type="radio"] {
    width: 24px;
    height: 24px;
    background: white;
    cursor: pointer;
    margin: 0 0 0 10px;
    padding: 0;
}
.setting_input input[type="radio"]:checked{
    background-image:url(../images/icons/check.svg);
    background-repeat:no-repeat;
    background-size:14px auto;
    background-position:center;
}

.switch {
    width: 24rem;
    position: relative;
}
.switch input {
    position: absolute;
    top: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.switch input:checked {
    z-index: 1;
}
.switch input:checked + label {
    opacity: 1;
    cursor: default;
}
.switch input:not(:checked) + label:hover {
    opacity: 0.5;
}
.switch label {
    color: #353535;
    opacity: 0.33;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    cursor: pointer;
}
.switch .toggle-outside {
    height: 100%;
    border-radius: 2rem;
    padding: 0.25rem;
    overflow: hidden;
    -webkit-transition: 0.25s ease all;
    -o-transition: 0.25s ease all;
    transition: 0.25s ease all;
}
.switch .toggle-inside {
    border-radius: 5rem;
    background: #fff;
    position: absolute;
    -webkit-transition: 0.25s ease all;
    -o-transition: 0.25s ease all;
    transition: 0.25s ease all;
}
.switch {
    width: 18rem;
    height: 2.2rem;
    margin: 0 auto;
    font-size: 0;
}
.switch input {
    height: 2.2rem;
    width: 6rem;
    left: 6rem;
    margin: 0;
}
.switch label {
    font-size: 1.4rem;
    line-height: 2.2rem;
    display: inline-block;
    width: 6rem;
    height: 100%;
    margin: 0;
    text-align: center;
}
.switch label:last-of-type {
    margin-left: 6rem;
}
.switch .toggle-outside {
    background: #ccc;
    position: absolute;
    width: 5rem;
    left: 6rem;
}
.switch .toggle-inside {
    height: 1.6rem;
    width: 1.6rem;
}
.switch input:checked ~ .toggle-outside .toggle-inside {
    left: 0.25rem;
}
.switch input ~ input:checked ~ .toggle-outside .toggle-inside {
    left: 3.05rem;
}
.switch input ~ input:checked ~ .toggle-outside {
    background: #ff2446;
}




/*Messages*/
.messages {
    position: fixed;
    top: 10px;
    right: 40px;
    max-height: calc(100vh - 110px);
    overflow: hidden;
    z-index:99999;
}
.message {
    max-width: 450px;
    opacity:0.2;
}
.message_inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 30px 20px 20px;
    background: #fff;
    -webkit-box-shadow: 0 5px 10px rgb(17 24 39 / 5%);
            box-shadow: 0 5px 10px rgb(17 24 39 / 5%);
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    position: relative;
}
.message_icon{
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #4B5563;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
.message_icon:before{
    content: '\f075';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-weight:bold;
    color:#fff;
}
.message_close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    text-align: center;
    line-height: 15px;
}
.message_close:before {
    content: '\f00d';
    font-family: "Font Awesome 5 Pro",Font Awesome\ 5 Brands;
    font-weight: bold;
    color: #A2A4BC;
    font-size: 10px;
}
.message.remove {
    display:none;
}
.message.success .message_inner{
    background-color:#DCFCE7;
    border-color:#15803D;
}
.message.success .message_icon{
    background-color:#15803D;
}
.message.success .message_icon:before{
    content: '\f00c';
    color:#fff;
}
.message.success .message_text,.message.success .message_title{
    color:#15803D;
}

.message.alert .message_inner{
    background-color:#FEE2E2;
    border-color:#B91C1C;
}
.message.alert .message_icon{
    background-color:#B91C1C;
}
.message.alert .message_icon:before{
    content: '\f071';
    color:#fff;
}
.message.alert .message_text,.message.alert .message_title{
    color:#B91C1C;
}
.message_content{
    padding-left:20px;
    width:calc(100% - 32px);
}
.message_title{
    font-size:1.6rem;
    line-height:1.9rem;
    font-weight:600;
    margin:0 0 5px 0;
}
.message_text{
    color:#9CA3AF;
    font-size:1.4rem;
    line-height:1.9rem;
}


/*Client data widget*/
.clients_data table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.clients_data table td, .clients_data table th{
    padding: 7px 10px;
    border: 1px solid #ccc;
}
.clients_data table td:last-child, .clients_data table th:last-child{
    text-align:right;
}
td.recalc-td {
    width: 51px;
}
span.recalcButton {
    display: block;
    width: 30px;
    height: 30px;
    float: right;
    cursor: pointer;
    background-image:url(../images/icons/refresh.svg);
    background-repeat:no-repeat;
    background-size:18px auto;
    background-position:center;
}
td.date-td {
    width: 120px;
    text-align: right;
}






/*Client data widget*/
.stats_data table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.stats_data table td, .stats_data table th{
    padding: 7px 10px;
    border: 1px solid #ccc;
}
.stats_data table td:last-child, .stats_data table th:last-child{
    text-align:right;
}
.small-coll {
    max-width: 70px;
    text-align: right!important;
}
.color-shower {
    width:100%;
    height: 20px;
    border-radius: 15px;
    margin: 0 auto;
}


/*Month detail*/
.stats_data.month_det_serv {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 15px;
}
td.order_date span {
    font-size: 1.2rem;
    color: #ccc;
}
.totalen_row{
    font-weight:bold;
}
.month_det_serv table td, .month_det_serv table th {
    padding: 4px 6px;
    border: 1px solid #ccc;
}



.pop-up-contents {
    max-height: calc(100vh - 300px);
    overflow: auto;
}
.openings_times_holder {
    display: flex;
}
.openings_times_day > span {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 400;
}


.date_select {
    padding: 10px 10px 10px 10px;
    background-color: #ff2446;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
    margin: 0 0 30px 0;
}
.date_select input {
    background: #fff;
    display: block;
    border: 0;
    border-radius: 3px;
    padding: 5px 10px;
    font-family: inherit;
    font-weight: bold;
}
.widget-total {
    float: right;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #898989;
}


/*Printing style*/

@media print{

    header,
    .page-navigation,
    .print-icon{
        display:none;
    }
    body{
        padding:0;
        background-color:#fff;
    }
    .widget-content {
        -webkit-box-shadow: none;
                box-shadow: none;
        border-bottom: 1px solid #ccc;
    }
    .monthDetail-widget-content{
        border:0;
        margin:0;
    }
    .monthDetail-widget .widget-content {
    border: 0;
    margin: 0;
    padding: 0;
}   
    

}



@media (max-width: 1200px) {

    /* Bestellingen overview */
    .order-ref {
        display: none;
    }


}

@media (max-width: 990.8px) {

    /* Bestellingen overview */
    .order-overview.order-header {
        display: none;
    }
    
    /* Bestellingen detail */
    .order-detail-data-row {
        margin-bottom: 20px;
        width: 50%;
    }

}

@media (max-width: 767.8px) {

    /* Nog niet beschikbaar */
    /*
    body.portal main, body.portal header {
        display: none;
    }
    body.portal:after {
        content: 'Helaas, het portaal is nog niet beschikbaar op mobiel.';
        position: fixed;
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
    */
    /* Bestellingen detail */
    .order-detail-data-row {
        margin-bottom: 20px;
        width: 100%;
    }

    .clients_data table{
        width:767px;
    }
    .clients_data{
        width:100%;
        overflow:auto;
    }
    .stats_data.month_det_serv {
        overflow: auto;
    }
    .stats_data.month_det_serv table {
        width: 360px;
    }
    
}