@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@font-face {
    font-family: 'proxima-nova-semibold';
    src: url('fonts/proximanovasemibold.woff2') format('woff2'), url('fonts/proximanovasemibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima-nova-light';
    src: url('fonts/proximanovalight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}
body {
    color: #606060;
    font-size: 100%;
    display: flex;
    flex-direction: column;
}
@media (max-width:575.99px) {
    body {
        font-size: 90%;
    }
}
body {
    --szf-orange-light: #d8890f;
    --szf-orange-normal: #da7100;
    --szf-navbar-textcolor: rgba(255,255,255,0.7);
    --szf-navbar-textcolor-highlight: rgba(255,255,255,0.9);
    --szf-navbar-selection-background-color: rgba(255,255,255,0.1);
}
.body-light {
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Noto Serif', serif;
}

.footer-bottom-szf {
    border-left-width: 1.5rem;
    border-right-width: 1.5rem;
}
footer {
    display: flex;
}
.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*height: 2rem; */
}
.footer-inner {
    flex: 0 0 auto;
}
.main-container {
    background-color: #EDEDED;
    padding-top: 1.25rem;
    border-style: solid;
    border-color: white;
    border-top-width: 0rem;
    border-left-width: 0;
    border-right-width: 0;
    flex: 1 0 auto;

    /*min-height: 100%;
    overflow-y: auto; 
    height: calc(100vh - 4rem); */
}
@media (min-width: 768px) {
    .main-container {
        border-width: 0.75rem;
        padding-top: 1.5rem;
    }
}
/* @media (min-width: 768px) { */
    .main-container-mt {
        margin-top: 2.8rem; /* Admin-bar: 1.4rem; main navbar: 2.8rem; */
    }
    .main-container-mt-admin {
        margin-top: 4.2rem; /* Admin-bar: 1.4rem; main navbar: 2.8rem; */
    }

.cursor-pointer {
    cursor: pointer;
}
.btn {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    /* Original: 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 .05s ease-in-out,background-color .05s ease-in-out,border-color .05s ease-in-out,box-shadow .05s ease-in-out; */
    transition: none !important;
}
a, .btn-link {
    color: #803D04;
}
    a:hover {
        color: #803D04;
        text-decoration: underline;
    }
.szf-hr-orange {
    border-top: 0.1rem solid var(--szf-orange-light);
    opacity: 0.5;
}
/* END NAVBAR */
.content {
    padding-top: 1.1rem;
}
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
.coupon-input.valid.modified:not([type=checkbox]) {
    outline: none;
}
.invalid {
    outline: 1px solid red;
}
.validation-message {
    color: red;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
/* BLAZOR ERROR UI OLD */
/*#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    } */
/* BLAZOR ERROR UI NEW */
#blazor-error-ui {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 1111;
    text-align: center;
}
.blazor-error-ui-inner {
    font-size: 1em;
    width: 400px;
    padding: 1.5rem;
    border-radius: 7px;
    color: #606060; /* Old: white; */
    background-color: #e0dacd; /* Old: #da7100; */
    /*border: 2px solid white; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.blazor-error-ui-inner .dismiss {
    color: black;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
}

/* BLAZOR RECONNECT DIALOG */
.components-reconnect-show > div,
.components-reconnect-failed > div,
.components-reconnect-rejected > div {
    display: none;
}
.components-reconnect-hide > .hide,
.components-reconnect-show > .show,
.components-reconnect-failed > .failed,
.components-reconnect-rejected > .rejected {
    display: block;
}
.p5 {
    padding-right: 5px;
}
.p10 {
    padding-right: 10px;
}
.reconnect-dialog {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    height: 150px;
    width: 400px;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 16%);
}
.components-reconnect-top {
    display: flex;
    flex-direction: row;
    height: 60px;
    transition: height 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 20px;
    color: white;
    width: 100%;
}
.components-reconnect-bottom {
    display: flex;
    flex-direction: row;
    padding: 20px;
    color: #606060;
    background-color: #e0dacd;
}

.cursor-pointer.hover, .cursor-pointer:hover {
    cursor: pointer;
}

.text-align-left {
    text-align: left;
}


.table-td {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E2E2;
    padding: 10px 12px 10px 7px;
}

.tr-div {
    padding: 1px 0;
}


/* Syncfusion Spinner */
.spin-row {
    position: relative;
    background-color: transparent;
    height: 100px;
}
.e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 {
    stroke: #f09341 !important;
}
.e-spinner-pane .e-spinner-inner .e-spin-label {
    color: #dddddd !important;
}


.desktop-screen {
    display: block;
}
.mobile-screen {
    display: none;
}
@media (max-width:1340px) {
    .desktop-screen {
        display: none;
    }
    .mobile-screen {
        display: block;
    }
}

.input-szf {
    display: block;
    width: 100%;
    height: calc(1.5em + .25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    width: 100%;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 8px;
    font-size: 16px;
}

    .input-szf:focus {
        border-color: var(--szf-orange-normal);
        box-shadow: 0 0 0 .2rem rgba(218,113,0,0.25);
        -webkit-transition: 0.25s;
        -moz-transition: 0.25s;
        -o-transition: 0.25s;
        transition: 0.25s;
    }

.valid.modified:not([type="checkbox"]) {
    outline: none;
    border-color: #26B050;
    box-shadow: 0 0 0 .05rem rgba(38,200,80,0.25);
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.coupon-input.valid.modified:not([type="checkbox"]) {
    outline: none;
    border-color: #ced4da;
    box-shadow: none;
}
.content-f2 {
    background-color: #F2F2F2;
}
.e-dialog .e-dlg-content {
    padding: 0;
}
.e-dialog .e-dlg-header-content + .e-dlg-content {
    padding: 0;
}

.form-group-double {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.form-group-double-fixed-100 {

}
    .form-group-double-fixed-100 .form-group:first-child {
        width: 7rem;
    }
    .form-group-double-fixed-100 .form-group:first-child:focus {
        z-index:1023;
    }
    .form-group-double-fixed-100 .form-group:nth-child(2) {
        width: calc(100% - 7rem);
    }
.form-group-double .form-group:last-child {
    margin-bottom: 0;
}
.form-group-double .form-group {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 50%;
    z-index: 1;
}
.form-group-double .form-group {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 50%;
    z-index: 1;
}
.form-group-double .form-group:first-child .form-group__input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.form-group-double .form-group:nth-child(2) .form-group__input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    left: -1px;
    position: relative;
    width: calc(100% + 1px);
}

/* OVERRIDED FORM-CONTROL */
    .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-top-color: rgb(206, 212, 218);
    border-right-color: rgb(206, 212, 218);
    border-bottom-color: rgb(206, 212, 218);
    border-left-color: rgb(206, 212, 218);
    border-radius: .25rem;
}
    .form-control:focus {
        border-color: var(--szf-orange-normal) !important;
        box-shadow: 0 0 0 .2rem rgba(218,113,0,0.25) !important;
        -webkit-transition: 0.25s;
        -moz-transition: 0.25s;
        /* -ms-transition: 0.25s; */
        -o-transition: 0.25s;
        transition: 0.25s;
    }
    .form-control::placeholder {
        opacity: 0.35;
    }

.invalid {
    outline: 1px solid #C00000;
    border-color: var(--szf-orange-normal) !important;
    box-shadow: 0 0 0 .2rem rgba(200, 0, 0, 0.25);
}
.validation-message {
    color: darkred;
    font-size: 0.9rem;
}
.btn-szf {
    border: 0px solid #ffffff00 !important;
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
}
.btn-szf-gradient {
    color: var(--szf-navbar-textcolor-highlight);
    background-color: #803D04;
    background: -webkit-gradient(top, #D8853F, #803D04);
    background: -webkit-linear-gradient(top, #D8853F, #803D04);
    background: -moz-linear-gradient(top, #D8853F, #803D04);
    /*background: -ms-linear-gradient(top, #D8853F, #803D04);*/
    background: -o-linear-gradient(top, #D8853F, #803D04);
    background: -o-linear-gradient(top, #D8853F, #803D04);
    border: 1px solid #6B3C00 !important;
    padding: 0.25rem 0.75rem !important;
    margin-top: -2px !important;
}
    .btn-szf-gradient:hover, .btn-szf-gradient:active {
        color: #C9C9C9;
        background-color: #6B3C00 !important;
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B76700), to(#6B3C00)) !important;
        background: -webkit-linear-gradient(top, #B76700, #6B3C00) !important;
        background: -moz-linear-gradient(top, #B76700, #6B3C00) !important;
        /*background: -ms-linear-gradient(top, #B76700, #6B3C00) !important;*/
        background: -o-linear-gradient(top, #B76700, #6B3C00) !important;
    }
    .btn-szf-gradient:focus {
        outline: 0;
        box-shadow: 0 0 2px .15rem rgba(218,113,0,0.25) !important;
        border: 1.5px solid #da7100;
    }
.btn-szf-gradient-red {
    color: var(--szf-navbar-textcolor-highlight);
    background-color: #830000;
    background: -webkit-gradient(top, #D73333, #830000);
    background: -webkit-linear-gradient(top, #D73333, #830000);
    background: -moz-linear-gradient(top, #D73333, #830000);
    /* background: -ms-linear-gradient(top, #D73333, #830000); */
    background: -o-linear-gradient(top, #D73333, #830000);
    background: -o-linear-gradient(top, #D73333, #830000);
    border: 1px solid #6B3C00;
}
    .btn-szf-gradient-red:hover, .btn-szf-gradient-red:active {
        color: #C9C9C9;
        background-color: #660000 !important;
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B71700), to(#660000)) !important;
        background: -webkit-linear-gradient(top, #B61700, #660000) !important;
        background: -moz-linear-gradient(top, #B61700, #660000) !important;
        /*background: -ms-linear-gradient(top, #B61700, #660000) !important; */
        background: -o-linear-gradient(top, #B61700, #660000) !important;
    }
    .btn-szf-gradient-red:focus {
        outline: 0;
        box-shadow: 0 0 0 .2rem rgb(218 113 1 / 0.25) !important;
        border: 1.5px solid #da7100;
    }

/* Loading Animations */
/* <div class="nb-spinner"></div> */
.loader-nb-spinner {
    width: 75px;
    height: 75px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border-top: 4px solid var(--szf-orange-light);
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1.2s spin linear infinite;
    animation: 1.2s spin linear infinite;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* <div class="dot-loader" > </div >
<div class="dot-loader" > </div >
<div class="dot-loader" > </div > */
.dot-loader {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #03A9F4;
    position: relative;
    -webkit-animation: 1.2s scaleDown ease-in-out infinite;
    animation: 1.2s scaleDown ease-in-out infinite;
}
.dot-loader:nth-child(2) {
    margin: 0 15px;
    -webkit-animation: 1.2s scaleDown ease-in-out infinite .15555s;
    animation: 1.2s scaleDown ease-in-out infinite .15555s;
}
.dot-loader:nth-child(3) {
    -webkit-animation: 1.2s scaleDown ease-in-out infinite .300000s;
    animation: 1.2s scaleDown ease-in-out infinite .300000s;
}
@-webkit-keyframes scaleDown {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scaleDown {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* <div class="circle-loader" >
<div > </div >
<div > </div >
<div > </div >
<div > </div >
<div > </div >
<div > </div >
<div > </div >
<div > </div >
</div > */
.circle-loader {
    position: relative;
}
.circle-loader div {
    height: 10px;
    width: 10px;
    background-color: #03A9F4;
    border-radius: 50%;
    position: absolute;
    -webkit-animation: 1.3s opaque ease-in-out infinite both;
    animation: 1.3s opaque ease-in-out infinite both;
}
.circle-loader > div:nth-child(1) {
    top: -25px;
    left: 0;
}
.circle-loader > div:nth-child(2) {
    top: -17px;
    left: 17px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}
.circle-loader > div:nth-child(3) {
    top: 0;
    left: 25px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.circle-loader > div:nth-child(4) {
    top: 17px;
    left: 17px;
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
.circle-loader > div:nth-child(5) {
    top: 25px;
    left: 0;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.circle-loader > div:nth-child(6) {
    top: 17px;
    left: -17px;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
.circle-loader > div:nth-child(7) {
    top: 0;
    left: -25px;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}
.circle-loader > div:nth-child(8) {
    top: -17px;
    left: -17px;
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s;
}
@-webkit-keyframes opaque {
    0%, 40%, 100% {
        opacity: 0.1;
    }
    40% {
        opacity: 1;
    }
}
@keyframes opaque {
    0%, 40%, 100% {
        opacity: 0.1;
    }
    40% {
        opacity: 1;
    }
}
/* END LOADERS PART */

/* CARDS */
.row-szf {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1400px;
}
@media (max-width: 768px) {
    .col-xs-12 {
        padding: 0.5rem 1rem;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .row-szf .col-sm-6 {
        padding: 1rem;
    }
}
.card-holder {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem;
}
.card-main-szf {
    background-color: #fafafa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    color: #292929;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-right: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
    width: 100%;
    transition: all ease-out .1s;
}
    .card-main-szf:not(.no-hover):hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        cursor: pointer;
        text-decoration: none;
    }

.image-placeholder {
    overflow: hidden;
}
.picture-szf {
    display: block;
    height: 100%;
    margin: auto;
    width: 100%;
}
.card-main-szf img {
    display: block;
    width: 100%;
}
.card-main-szf .teaser-content-szf {
    margin: 0;
    padding: 1rem;
    padding-top: 1rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
@media (min-width: 768px) {
    .card-main-szf .teaser-content-szf {
        padding-top: 1.25rem;
        flex: 1 0 auto;
        justify-self: stretch;
    }
}
.card-main-szf .szf-label {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    flex-direction: column;
    border-top: 10px solid transparent;
    /* background-color: #C30C15; */
    background-clip: padding-box;
    position: relative;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 10rem;
}
    .card-main-szf .szf-label .szf-label-logo {
        height: 3rem;
        padding: .5rem;
    }
.szf-label-logo {
    color: #ced4da;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: right;
    padding: .8rem;
    line-height: 0;
    height: 5.5rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.card-content-wrapper {
    padding-top: 1rem;
    height: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
    .card-content-wrapper .headline {
        margin: 0;
        width: 100%;
        flex: 0 1 auto;
        overflow: hidden;
        font-weight: 500;
        max-width: 100%;
        padding: 0 0 .5rem 0;
        white-space: normal;
        font-size: 1.1rem;
        line-height: 1.4;
        color: #4c4c4c;
    }
.card-content-text {
    padding-bottom: .5rem;
    padding-top: .5rem;
}
p .card-content-text {
    height: 100%;
    flex-grow: 1;
    color: #292929;
    margin-bottom: 0;
    flex-direction: column;
}
.card-bottom-text .card-content-wrapper {
    padding: .8rem 0 0;
    flex: 0 1 auto;
    font-weight: 500;
    min-width: 30%;
    white-space: nowrap;
    text-align: right;
    font-size: 1rem;
    line-height: 1.4;
}

/* ACCOUNT MANAGE PAGE(S) */
.profile-block-title {
    font-family: proxima-nova-semibold;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    text-transform: uppercase;
}

.profile-block-title-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.profile-box {
    background-color: #fafafa;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.12);
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    text-align: left;
}
@media(min-width: 768px) {
    .profile-box {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
.profile-box-delete-user {
    background-color: #faf4f4;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.12);
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    position: relative;
    text-align: center;
}

.profile-personal-data {
    position: relative;
}
.profile-box .profile-personal-data-item-label {
    width: 130px;
}

.profile-personal-data-item-label {
    display: inline-block;
    font-size: 16px;
    line-height: 2;
}
.profile-personal-data-item-value {
    font-family: proxima-nova-semibold;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
}
.profile-personal-data-edit-button-container {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
}

.diag-box {
    background-color: #fafafa;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.12);
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    text-align: left;
}
/*@media(min-width: 768px) and (max-width: 1199px) {
    .profile-personal-data-edit-button-container {
        top: 30px;
    }
} */
@media(max-width: 767px) {
    .profile-personal-data-edit-button-container {
        left: 0;
        position: relative;
        text-align: center;
        top: 0;
        width: 100%;
    }
}
.profile-address-title {
    font-family: proxima-nova-semibold;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
}
.profile-address-content {
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    min-height: 190px;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
}
@media(min-width: 768px) and (max-width: 1199px) {
    .profile-address-content {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1.5rem;
    }
}
@media(max-width: 767px) {
    .profile-address-content {
        margin-bottom: 1.25rem;
        min-height: 180px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.profile-address-name, .profile-address-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.profile-address-name {
    font-family: proxima-nova-semibold;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.profile-address-address {
    margin-bottom: 1.5rem;
    margin-top: 0;
    max-width: 80%;
}

.profile-address-text {
    margin-top: 0.25rem;
}
.profile-address-content-add {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
}
@media(max-width: 767px) {
    .profile-address-content-add {
        margin-bottom: 1.5rem;
        min-height: 155px;
    }
}
.profile-address-content-add:hover {
    border: 1px solid var(--szf-orange-normal);
}
.profile-address-add-new-icon {
    font-family: proxima-nova-light;
    font-size: 50px;
    font-weight: 400;
    line-height: normal;
}
.address-default-star {
    position: absolute;
    top: 1.25rem;
    right: 3.35rem;
}
.address-modify-button {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
}
.address-trash-button {
    position: absolute;
    bottom: 2.15rem;
    right: 3rem;
}
@media(max-width: 767px) {
    .address-default-star {
        top: 1.35rem;
        right: 1.85rem;
    }
    .address-modify-button {
        bottom: 1.25rem;
        left: 1.5rem;
    }
    .address-trash-button {
        bottom: 2rem;
        right: 1.5rem;
    }
}
@media(min-width: 768px) and (max-width: 1199px) {
    .address-default-star {
        right: 2.35rem;
    }
    .address-modify-button {
        bottom: 1.25rem;
        left: 2rem;
    }
    .address-trash-button {
        bottom: 1.85rem;
        right: 2rem;
    }
}
.border-top-zero {
    border-top: 0px;
}

.border-bottom-zero {
    border-bottom: 0px;
}

.delete-form-title {
    font-family: proxima-nova-semibold;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.profile-form-title {
    font-family: proxima-nova-semibold;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    text-transform: uppercase;
}

.profile-block-form {
    margin-left: 0rem;
    margin-right: 0rem;
}
@media(min-width: 768px) {
    .profile-block-form {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}
.form-label-profile {
    display: block;
    margin-bottom: 0.25rem;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}
.form-label-common-sm {
    display: block;
    margin-bottom: 0.25rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1rem;
}

.previous-order-box {
    background-color: #fafafa;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.12);
    padding-top: 1rem;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
}
@media(min-width: 768px) {
    .previous-order-box {
        padding-top: 1.5rem;
        padding-bottom: 1.75rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        position: relative;
    }
}
/* TOGGLE CHECKBOX */
.toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 2.56rem;
    height: 1.28rem;
    display: inline-block;
    position: relative;
    border-radius: 0.55rem;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #ABABAB;
    transition: background-color ease 0.3s;
}

    .toggle:before {
        content: " "; /* "on off"; */
        display: block;
        position: absolute;
        z-index: 2;
        width: 1rem;
        height: 1rem;
        background: #fff;
        left: 0.22rem;
        top: 0.14rem;
        border-radius: 50%;
        font: 0.4rem/1rem Helvetica;
        text-transform: uppercase;
        font-weight: bold;
        text-indent: -1rem;
        word-spacing: 1.5rem;
        color: #fff;
        text-shadow: -1px -1px rgba(0,0,0,0.15);
        white-space: nowrap;
        box-shadow: 1px 2px 5px rgba(0,0,0,0.5);
        transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
    }

    .toggle:checked {
        background-color: #803D04;
        background: -webkit-gradient(top, #D8853F, #803D04);
        background: -webkit-linear-gradient(top, #D8853F, #803D04);
        background: -moz-linear-gradient(top, #D8853F, #803D04);
        /*background: -ms-linear-gradient(top, #D8853F, #803D04); */
        background: -o-linear-gradient(top, #D8853F, #803D04);
        background: -o-linear-gradient(top, #D8853F, #803D04);
    }

        .toggle:checked:before {
            left: 1.35rem;
        }

/* CHECKBOX */

/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 0.1rem;
}
.checkbox-container-2 {
    display: block;
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.95rem;
}
    /* Hide the browser's default checkbox */
    .checkbox-container input, .checkbox-container-2 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkbox-checkmark {
    position: absolute;
    top: 0.01rem;
    left: 0;
    bottom: 0;
    height: 1.1rem;
    width: 1.1rem;
    background-color: transparent;
    border: 0.1rem solid #9d9da9;
    border-radius: 0.2rem;
}

.checkbox-checkmark-bg-white {
    background-color: #fafafa;
    top: 0.1rem;
}
.checkbox-checkmark-2 {
    position: absolute;
    top: 0.15rem;
    left: 0;
    bottom: 0.1rem;
    height: 1.1rem;
    width: 1.1rem;
    background-color: transparent;
    border: 0.1rem solid #9d9da9;
    border-radius: 0.2rem;
    margin-top: auto;
    margin-bottom: auto;
}
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark, .checkbox-container-2:hover input ~ .checkbox-checkmark-2 {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark, .checkbox-container-2 input:checked ~ .checkbox-checkmark-2 {
    border: 0px;
    background-color: #803D04;
    background: -webkit-gradient(top, #D8853F, #803D04);
    background: -webkit-linear-gradient(top, #D8853F, #803D04);
    background: -moz-linear-gradient(top, #D8853F, #803D04);
    /*background: -ms-linear-gradient(top, #D8853F, #803D04); */
    background: -o-linear-gradient(top, #D8853F, #803D04);
    background: -o-linear-gradient(top, #D8853F, #803D04);
}

.checkbox-container input:checked ~ .checkbox-checkmark-darkred, .checkbox-container-2 input:checked ~ .checkbox-checkmark-darkred {
    background: darkred !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after, .checkbox-checkmark-2:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after, .checkbox-container-2 input:checked ~ .checkbox-checkmark-2:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after, .checkbox-container-2 .checkbox-checkmark-2:after {
    left: 0.375rem;
    top: 0.15rem;
    width: 0.325rem;
    height: 0.65rem;
    border: solid white;
    border-width: 0 0.15rem 0.15rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-modal-label-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

@media (max-width: 768px) {
    .btn-sm-pb1 {
        margin-bottom: 1rem !important;
    }
}

/* Custome Radio Button */
.radio-container {
    display: block;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.radio-checkmark {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    height: 1.25rem;
    width: 1.25rem;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
}
.radio-checkmark-sm {
    position: absolute;
    top: 0.25rem;
    left: 0.1rem;
    height: 1rem;
    width: 1rem;
    background-color: white; /* transparent; */
    border-radius: 50%;
    /* border: 1px solid #c0c0c0; */
}
/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark, .radio-container:hover input ~ .radio-checkmark-sm {
    background-color: #eae5e5;
}
.radio-container:hover input:disabled ~ .radio-cehckmark, .radio-container:hover input:disabled ~ .radio-cehckmark-sm {
    background-color: #eaeaea;
}

/* When the radio button is checked, add a diferent background */
.radio-container input:checked ~ .radio-checkmark, .radio-container input:checked ~ .radio-checkmark-sm {
    background-color: transparent;
}
.radio-container input:disabled ~ .radio-checkmark, .radio-container input:disabled ~ .radio-checkmark-sm {
    background-color: #c6c6c6;
    border-width: 0px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after, .radio-checkmark-sm:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after, .radio-container input:checked ~ .radio-checkmark-sm:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
    top: 0.31rem;
    left: 0.32rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #6B3C00;
}
.radio-container .radio-checkmark-sm:after {
    top: 0.25rem;
    left: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #6B3C00;
}

/********/
/* CART */
/********/

.modal-cart-title {
    margin-top: 0.125rem;
    font-family: proxima-nova-light;
    font-size: 1.1rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}
.cart-items-md {
    margin-top: 0.5rem;
    background: #e6f0f2;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-family: proxima-nova-light;
}
.cart-card-title-link-md {
    /* text-transform: uppercase; */
    text-decoration: underline;
}
.cart-card-description-md {
    font-style: italic;
}
.cart-card-price-md {
    font-weight: bold;
    text-align: right;
}
.cart-total-sigma-md {
    font-family: proxima-nova-light;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: right;
    padding: 0.5rem;
}
.cart-md-h5 {
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: proxima-nova-light;
    font-size: 1rem;
}


.col-bg-1 {
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    background: #D9D9D9;
}

.cart-card {
    /* -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.12);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.12); */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 1.5rem;
    /* border-radius: 0.4rem; */
}

.basket-card__content {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 20px 40px;
    padding-left: 40px;
    position: relative;
}
.cart-card-image {
    display: block;
    width: 7rem;
}
.cart-card-image-small {
    display: block;
    width: 5rem;
}
.image-contain {
    font-family: "object-fit:contain";
    -o-object-fit: contain;
    object-fit: contain;
}
.cart-card img {
    border-style: none;
}
.cart-card-image-block {
    -ms-flex-negative: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    flex-shrink: 0;
}
.cart-card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 2rem;
    margin-right: 1.5rem;
    padding-top: 0.75rem;
    width: 100%;
}
.cart-card-body-v1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 1.5rem;
    /*margin-right: 1.5rem; */
    width: 100%;
}
.cart-card-title-link {
    display: block;
    font-family: proxima-nova;
    font-size: 1.2rem;
    line-height: 1.33rem;
    margin-bottom: 0.33rem;
    max-height: 2.66rem;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
}
.cart-card-title-v1 {
    font-family: proxima-nova;
    font-size: 1.2rem;
    line-height: 1.33rem;
    overflow: hidden;   
}
.cart-card-description {
    display: block;
    font-family: proxima-nova;
    text-decoration: none;
    text-align: left;
    padding-left: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
    font-size: 1.1rem;
    /*  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 2rem; */
}
.cart-card-quantity-price-container {
    position: absolute;
    bottom: 1.25rem;
    display: inherit;
}
.basket-card__quantity__input {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: none;
    box-shadow: none;
    justify-content: space-between;
    min-width: 95px;
}

.spinner-input {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart-card-price {
    font-weight: 400;
    line-height: 1.6rem;
    white-space: nowrap;
}
.cart-card-quantity-v1 {
    float: left;
    text-align: left;
    width: 30%;
}
.cart-card-price-v1 {
    float: right;
    text-align: right;
    width: 60%;
    font-weight: bold;
    font-size: 1.1rem;
}
.basket-card__quantity-button {
    background-color: #fff;
    border-width: 1.2px;
    color: #9b9b9b !important;
    height: 24px;
    padding: 0;
    position: relative;
    width: 24px;
}
.button--default {
    background: #f8f8f8;
    background-color: rgb(248, 248, 248);
    border: 1px solid #dfdfdf;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.basket-card__quantity-label {
    color: #4a4a4a;
    font-family: proxima-nova;
    font-size: 14px;
}
.cart-card-quantity {
    align-self: end;
    text-align: left;
}
.cart-card-price {
    font-size: 1.25rem;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: -2.375rem;
}
.cart-card-remove {
    align-self: start;
}
.card-items {
    border-radius: 0.4rem;
}
@media (max-width: 767.99px) {
    .cart-items {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .cart-card {
        margin-top: 1rem;
    }

    .basket-card__content {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 25px 20px;
    }

    .cart-card-image {
        width: 6rem;
        margin-left: -0.25rem
    }

    .cart-card-image-block {
        width: 6rem;
    }

    .cart-card-body {
        margin-left: 0.5rem;
        margin-right: 1rem;
        padding-top: 0.25rem;
    }
    .basket-card__quantity__input {
        min-width: 80px;
    }

    .basket-card__quantity-button {
        height: 20px;
        width: 20px;
    }

    .basket-card__quantity-label {
        font-size: 12px;
        line-height: 20px;
    }

    .cart-card-price {
        font-size: 1.2rem;
        right: -1.875rem;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .basket-card__content {
        padding-left: 30px;
    }
    .basket-card__quantity-label {
        font-size: 12px;
    }
}

.card-content {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: #F9F9F9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    position: relative;
    border-radius: 0.4rem;
    border: 1px solid #c6c6c6;
}
@media (max-width: 767.99px) {
    .card-content {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0.75rem 0.75rem 0.75rem 0.75rem;
    }
}
.card-content-style-v1 {
    background-color: transparent;
    border-radius: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.terms-v1 {
    padding: 1.25rem 0.75rem;
    display: block;
    cursor: pointer;
    /* max-width: 73rem; */
    line-height: 150%;
    box-shadow: 0 2px 4px 0 rgba(36, 36, 36, 0.05);
    border: solid 1px #e0d0b0;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    background-color: #eeddbb;
}

.container-quickorder {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 992px) {
    .container-quickorder {
        max-width: 960px;
    }
}

.cart-item-fade-out {
    animation: ci-fade-out 0.5s linear forwards;
}
@keyframes ci-fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fade-in {
    animation: fade-in 0.15s linear forwards;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fade-out {
    animation: fade-out 0.15s linear forwards;
}


.co-border {
    background: #FAFAFA;
    border: 1px solid #CCC;
    border-radius: 3px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
}
.co-title {
    font-size: 1.1rem;
    color: var(--szf-navbar-textcolor);
    border-radius: 3px 3px 0 0;
    padding: 0.25rem 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #7d3b00, #311900); /* V1_OLD: #343a40, #a7a7a7); V2: #7d3b00, #311900); */
}
@media (max-width: 767.99px) {
    .co-border {
        margin-left: 0;
        margin-right: 0;
        width: auto;
    }
}
.co-dc {
    position: relative;
    margin: 1rem;
    padding-bottom: 2.5rem;
}
.co-btn-modify {
    position: absolute;
    bottom: 0;
    right: 0;
}
.mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.fontsize-95-90 {
    font-size: 0.95rem;
}
.mr-1 {
    margin-right: 0.25rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mr-3 {
    margin-right: 1rem !important;
}
.mr-4 {
    margin-right: 1.5rem !important;
}
.mr-5 {
    margin-right: 2rem !important;
}
.ml-1 {
    margin-left: 0.25rem !important;
}
.ml-2 {
    margin-left: 0.5rem !important;
}
.ml-3 {
    margin-left: 1rem !important;
}
.ml-4 {
    margin-left: 1.5rem !important;
}
.ml-5 {
    margin-left: 2rem !important;
}
.order-mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.float-left-sm {
    float: left;
}
.float-right-sm {
    float: right;
}
.d-none-sm {
    display: none;
}
.sm-d-none {
    display: block;
}
.xs-d-none {
    display: block;
}
.xs-d-none-inline-block {
    display: inline-block;
}
@media (max-width: 575.99px) {
    .xs-d-none {
        display: none;
    }
    .xs-d-none-inline-block {
        display: none;
    }
}

@media (max-width: 767.99px) {
    .co-btn-modify {
        font-size: 0.9rem;
    }

    .fontsize-95-90 {
        font-size: 0.9rem;
    }

    .mt-sm-4 {
        margin-top: 2rem !important;
    }
    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .width-md-100 {
        width: 100%;
    }

    .text-align-md-center {
        text-align: center;
    }

    .mx-reversemd-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .float-left-sm {
        float: none;
    }

    .float-right-sm {
        float: none;
    }

    .d-none-sm {
        display: block;
    }

    .sm-d-none {
        display: none;
    }
    .bt-md-mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
}

@media (max-width: 575.99px) {
    .width-sm-100 {
        width: 100%;
    }

    .text-align-sm-center {
        text-align: center;
    }

    .mx-reversesm-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .order-mx-2 {
        margin-left: auto;
        margin-right: auto;
    }
    .d-none-xs {
        display: block;
    }

    .xs-d-none {
        display: none;
    }
 }

    .opacity-0 {
        opacity: 0;
    }

    .opacity-1 {
        opacity: 1;
    }

    .tranisition-opacity-1s-ease-in {
        transition: opacity 1s ease-in;
    }

    .tranisition-opacity-03s-ease-in {
        transition: opacity 0.3s ease-in;
    }

    .tranisition-opacity-05s-ease-in {
        transition: opacity 05s ease-in;
    }

    .tranisition-opacity-075s-ease-in {
        transition: opacity 0.75s ease-in;
    }

    .tranisition-opacity-2s-ease-in {
        transition: opacity 2s ease-in;
    }

    .width-md-50 {
        width: 50%;
        display: inline-block;
        padding: 0.5rem;
    }

    .width-lg-50 {
        width: 50%;
        display: inline-block;
        padding: 0.5rem;
    }

    .float-md-left {
        float: left;
    }

    .px-md-3 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mx-md-3 {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    @media (max-width: 767.99px) {
        .width-md-50 {
            width: 100%;
        }

        .width-lg-100 {
            width: 100%;
        }

        .float-md-left {
            float: none;
        }

        .px-md-3 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .mx-md-3 {
            margin-left: 0;
            margin-right: 0;
        }
    }

    @media (max-width: 991.99px) {
        .width-lg-50 {
            width: 100%;
        }
    }
    /* MAIN PAGE SELECTOR */
    .modal-maxsize {
        max-width: 1200px;
    }

    .selector-item {
        margin: 25px 0;
        padding: 0 10px;
        position: relative;
        text-align: center;
    }

        .selector-item a, .selector-item a:hover {
            color: #333333;
            text-decoration: none;
        }

    .button-transparent {
        background: none;
        border: none;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

        .button-transparent:focus {
            outline: 0px;
            outline: 0px auto -webkit-focus-ring-color;
            box-shadow: none;
        }

    .shadow-normal {
        box-shadow: 1px 10px 12px 1px rgba(20,20,20,0.1);
    }

    .category-link-img {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .index-selector {
        outline: 0;
    }

    .width-100 {
        width: 100%;
    }

    .img-within-viewport {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    /************/
    /* Price DB */
    /************/
    .db-input-icon {
        position: relative;
    }

        .db-input-icon > i {
            position: absolute;
            display: block;
            transform: translate(0, -50%);
            top: 50%;
            pointer-events: none;
            width: 25px;
            text-align: center;
            font-style: normal;
        }

        .db-input-icon > input {
            padding-left: 25px;
            padding-right: 0;
        }

    .db-input-icon-right > i {
        right: 0;
    }

    .db-input-icon-right > input {
        padding-left: 0;
        padding-right: 25px;
        text-align: right;
    }

    .currencySignHUF:after {
        content: ' Ft';
    }

    .currencySignEUR:after {
        content: ' &#128;';
    }

    .currencySignCHF:after {
        content: ' &#8355;';
    }

    .WebKitAndroidBubble {
        position: fixed;
        width: 270px;
        height: 100px;
        text-align: center;
        background-color: #fff;
        border: 6px solid #666;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        -webkit-box-shadow: 2px 2px 4px #888;
        -moz-box-shadow: 2px 2px 4px #888;
        box-shadow: 2px 2px 4px #888;
        top: 0px;
        right: 0px;
        z-index: 2001;
        margin-top: 45px;
        padding: 4px 3px;
    }

        .WebKitAndroidBubble:before {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            right: 20px;
            bottom: 88px;
            border: 25px solid;
            border-color: transparent #666 #666 transparent;
            z-index: 2001;
        }

        .WebKitAndroidBubble:after {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            right: 26px;
            bottom: 88px;
            border: 18px solid;
            border-color: transparent #fff #fff transparent;
            z-index: 2001;
        }

    .WebKitIOSBubble {
        position: fixed;
        width: 270px;
        height: 100px;
        text-align: center;
        background-color: #fff;
        border: 6px solid #666;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        -webkit-box-shadow: 2px 2px 4px #888;
        -moz-box-shadow: 2px 2px 4px #888;
        box-shadow: 2px 2px 4px #888;
        bottom: 0px;
        right: 0px;
        z-index: 2001;
        margin-bottom: 45px;
        padding: 4px 3px;
    }

        .WebKitIOSBubble:before {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            right: 20px;
            top: 88px;
            border: 25px solid;
            border-color: transparent #666 #666 transparent;
            z-index: 2001;
            transform: rotate(-90deg);
        }

        .WebKitIOSBubble:after {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            right: 26px;
            top: 88px;
            border: 18px solid;
            border-color: transparent #fff #fff transparent;
            z-index: 2001;
            transform: rotate(-90deg);
        }

    .progress-bg-szf {
        --bs-bg-opacity: 1;
        background-color: rgb(218, 113, 0);
    }

    .progress-bar-szf-dark-striped {
        background-image: linear-gradient(45deg,rgba(120, 55, 0,0.25) 25%,transparent 25%,transparent 50%,rgba(120, 55, 0,.25) 50%,rgba(120, 55, 0,.25) 75%,transparent 75%,transparent);
        background-size: 1rem 1rem;
    }

.dashboard-card-container {
    border-radius: 5px;
    background: #fdf3d6;
    padding-top: 0;
    padding-bottom: 0.25rem;
    margin: 0.25rem;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.15);
    position: relative;
}
.dashboard-card-title {
    height: 1.5rem;
    /*margin-left: -1rem;
    margin-right: -1rem; */
    border-radius: 5px 5px 0 0;
}
.dashboard-card-title-text {
    color: white;
    font-family: proxima-nova-light; /* proxima-nova-semibold; */
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    float: right;
    margin-right: 1rem;
    /* margin-top: 0.1rem; */
}
.dashboard-card-title-icon {
    margin-left: 0.75rem;
    margin-top: -1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.3);
    background: white;
    text-align: center;
}
.dashboard-card-table {
    display: grid;
    text-align: left;
    margin-top: -1rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}
.dashboard-card-table-td {
    margin-left: 0.5rem;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
.dashboard-card-table-td-p-name {
    margin-left: 2.5rem;
    padding-left: 0.5rem;
    overflow-wrap: anywhere;
    margin-bottom: 0;
}
.dashboard-card-table-td-p {
    padding-left: 0.5rem;
    overflow-wrap: anywhere;
    margin-bottom: 0;
}
.dashboard-card-table-td-icon {
    width: 2.5rem;
    text-align: center;
    vertical-align: top;
}
.pl-2 {
    padding-left: 0.5rem;
}
.starry-night-bg {
    background-color: black;
    background-image: radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 10px), radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 5px), radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 10px), radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 5px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
}
.dashboard-job-number {
    font-size: 2rem;
    font-style: italic;
    font-weight: bold;
    vertical-align: middle;
    color: #666;
    margin-left: 2rem;
    margin-right: 1rem;
}
@media (min-width: 1200px) {
    .text-align-center-from-md {
        text-align: center;
    }
}
.dashboard-comment-bg {
    border-radius: 5px;
    padding: 0.15rem 0.5rem;
    background-color: #dfdfdf;
}
.vertical-align-middle {
    vertical-align: middle;
}
.font-weight-bold {
    font-weight: bold;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
    /******/
    /*
    WAVY BACKGROUNDS
.wave-bg {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    vertical-align: middle;
    overflow: hidden;
}
    .wave-bg svg, .wave-bg-svg {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
    }
.wave-bg-css::after {
    content: '';
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: #0f0f10;
    height: 85%;
} */