@-webkit-keyframes rotate_main {
    0% {
        -webkit-transform: rotate(0deg);
        -transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -transform: rotate(360deg);
    }
}
@keyframes rotate_main {
    0% {
        -webkit-transform: rotate(0deg);
        -transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -transform: rotate(360deg);
    }
}

@media all and (min-width:1300px) {
    .container-fluid {
        max-width: 1240px;
    }
}

.header-top .container-fluid {
    max-width: 1240px;
}



body:not(.no-space) {
    padding-top: 200px;
}

@media all and (max-width:991px) {

    body:not(.no-space) {
        padding-top: 157px;
    }

}

@media all and (min-width:991px) {

    body.nav-plain:not(.no-space) {
        padding-top: 156px;
    }

}





/* Alerts */
.alert {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5em;
    padding: 14px 18px 15px;
}
.alert.bottom {
    margin-bottom: 30px;
}
.alert.rounded {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.alert h1,
.alert h2,
.alert h3 {
    font-size: 1.5rem;
}

.alert ul {
    padding-left: 17px;
    margin: 0;
}

.alert > strong {
    margin-bottom: 8px;
}

.alert p:last-child {
    margin-bottom: 0 !important;
}

.alert.inline,
.alert.alert-inline {
    display: inline-block;
    padding-right: 25px;
}


.alert.alert-danger {
    color: #9e0000;
    border: 1px solid #f8c7c4;
    background-color: #ffe1e1;
}
.alert.alert-success {
    color: #005a0d;
    border: 1px solid #aed9b4;
    background-color: #d9f5de;
}

.alert.rounded {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.alert p:last-child,
.alert ul:last-child {
    margin-bottom: 0;
}
.alert-inline {
    display: inline-block;
    padding-right: 30px;
}
.alert a {
    font-weight: 500;
    text-decoration: underline;
    color: inherit;
}


.alert.alert-compact {
    font-size: 0.85rem;
    line-height: 1.5em;
}
.alert ul {
    list-style: outside;
    padding-left: 15px;
}
.alert ul:last-child {
    margin-bottom: 0;
}








/* Status Order Segment */
.status-segment-wrap {
    display: block;
    width: 100%;
}
.status-segment {
    display: block;
    position: relative;
    overflow: hidden;
    border: none;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 25%);
    padding: 35px 35px 40px;
    margin: 0 auto 40px;
    width: 900px;
    max-width: 100%;
    padding-right: 190px;
    min-height: 190px;
}
.status-segment .status-indicator {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 128px;
    height: 128px;
}
.status-segment .status-progress-bar,
.status-segment .status-progress-bar > .status-progress {
    height: 4px;
}
.status-segment .status-progress-bar {
    position: absolute;
    left: 0; right: 0;
    bottom: 0; z-index: 35;
    background: #e9e9e9;
}
.status-segment .status-progress-bar > .status-progress {
    display: inline-block;
    vertical-align: top;
    background: #055cc6;
    transition: 0.25s;
}
.status-segment.is-failed .status-progress-bar > .status-progress {
    width: 100% !important;
    background: #bc0000;
}
.status-segment.is-success .status-progress-bar > .status-progress {
    width: 100% !important;
    background: #27ab5d;
}

.status-segment .status-icon {
    display: block;
    position: absolute;
    top: 0; right: 0;
    transition: 0.5s;
    width: 128px;
    height: 128px;
}
.status-segment .status-icon::after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    z-index: 35;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.status-segment .status-icon.status-loader {
    -webkit-animation: infinite linear rotate_main 2s;
    animation: infinite linear rotate_main 2s;
}

.status-segment .status-icon.status-loader::after {
    background-size: 86px;
}
.status-segment .status-icon.status-failed::after {
    background-size: 64px;
}
.status-segment .status-icon.status-success::after {
    background-size: 64px;
}



html:not(.webp) .status-segment .status-icon.status-loader::after {
    background-image:url('/images/status-loader.png');
}
html:not(.webp) .status-segment .status-icon.status-failed::after {
    background-image:url('/images/status-failed.png');
}
html:not(.webp) .status-segment .status-icon.status-success::after {
    background-image:url('/images/status-success.png');
}



html.webp .status-segment .status-icon.status-loader::after {
    background-image:url('/images/status-loader.webp');
}
html.webp .status-segment .status-icon.status-failed::after {
    background-image:url('/images/status-failed.webp');
}
html.webp .status-segment .status-icon.status-success::after {
    background-image:url('/images/status-success.webp');
}





.status-segment:not(.is-loading) .status-icon.status-loader { display: none; }
.status-segment:not(.is-failed) .status-icon.status-failed { display: none; }
.status-segment:not(.is-success) .status-icon.status-success { display: none; }

.status-segment:not(.is-loading) .status-article .status-loading { display: none; }
.status-segment:not(.is-failed) .status-article .status-failed { display: none; }
.status-segment:not(.is-success) .status-article .status-success { display: none; }

.status-segment .alert {
    padding: 20px 22px 22px;
    max-width: 100%;
    width: 680px;
    margin: 0;
}
.status-segment .alert h2,
.status-segment .alert h3 {
    margin-bottom: 12px;
}
.status-segment .alert p:not(:last-child) {
    margin-bottom: 10px;
}





/* Forms */


.form-wrap form {
    margin: 0
}

.form-wrap .field {
    margin-bottom: 15px
}

.form-wrap .field label {
    display: block;
    margin-bottom: 5px
}

.form-wrap .field label>em {
    font-style: normal;
    font-weight: 800;
    color: #636363
}

.form-wrap .field input,
.form-wrap .field select,
.form-wrap .field textarea {
    -webkit-appearance: none;
    display: block;
    padding: 7px 10px;
    outline: none;
    background: #f3f3f3;
    border: 1px solid transparent;
    border-radius: 3px;
    width: 100%
}

.form-wrap .field textarea {
    height: 140px;
    resize: none
}

.form-wrap .actions {
    margin-top: 25px
}

.form-wrap .actions .button {
    margin-bottom: 0
}




/* Layers */

.layer > .close-icon {
    z-index: 35;
}

.country-image svg,
.country-image svg path {
    fill: #CCCCCC;
    fill-opacity: 1;
    stroke:white;
    stroke-opacity: 1;
    stroke-width:0.5;
}

#layer-country .screen.minimal {
    display: block;
    position: relative;
    height: 300px;
}



/* Countries modal (old) */


#layer-country .country-image {
    display: block;
    margin-left: auto;
    max-width: 100%;
    width: 170px;
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
}

#layer-country .country-image > svg {
    max-height: 100%;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

#layer-country .article.country-info {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 0 0;
    color: #000;
    font-size: 1.1rem;
    width: 365px;
    max-width: 100%;
    transform: translateY(-50%);
}

@media all and (max-width:768px) {
    #layer-country .article.country-info br {
        display: none;
    }
}






/* Countries modal (new) */



#layer-country .article.main {
    margin: 10px auto 30px;
    text-align: center;
}

#layer-country .article.main h2 {
    font-size: 1.5rem;
    color: #000;
}

#layer-country .countries {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    width: 440px;
}

#layer-country .country {
    display: block;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2em;
    padding-top: 48px;
    margin-bottom: 20px;
    max-width: 100%;
    background-color: #eeeeee;
    border: 2px solid #dedede;
    text-decoration: none !important;
    color: #9b9b9b;
}

#layer-country .country:hover {
    border: 2px solid #999;
    color: #000;
}

#layer-country .country > .icon {
    display: block;
    width: 84px;
    max-width: 75%;
    margin: 0px auto 10px;
}

#layer-country .country > .label {
    display: block;
    width: 100px;
    margin: 16px auto;
    text-align: center;
}

@media all and (max-width:768px) {

    #layer-country .country {
        padding-top: 40px;
    }

    #layer-country .countries > .row {
        margin: 0 -8px;
    }
    #layer-country .countries > .row > div {
        padding: 0 8px;
    }

}








.visible-xs {
    display: none !important;
}

@media all and (max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
    .visible-xs {
        display: block !important;
    }
    .visible-xs.xs-flex {
        display: inline-flex !important;
    }
    .visible-xs.xs-inline-flex {
        display: inline-flex !important;
    }



    /* Status Page */
    .status-segment {
        padding: 0px;
    }
    .status-segment .status-indicator {
        position: relative;
        top: auto;
        right: auto;
        margin: 0px auto;
    }
    .status-segment .alert {
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 0 !important;
        padding-bottom: 28px !important;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }
    .status-segment .alert h2,
    .status-segment .alert h3 {
        font-size: 18px !important;
        line-height: 1.2em;
    }





    /* Customization */
    .footer .footer-wrapper .footer-info .footer-icons span {
        width: 22vw;
        height: 11vw;
        margin: 0 3vw 3vw 0;
        max-width: 6em;
        max-height: 3em;
    }




}

@media all and (max-width:575px) {


    body:not(.no-space) {
        padding-top: 127px;
    }

    body.has-rating:not(.no-space) {
        padding-top: 172px;
        padding-top: 167px;
        padding-top: 162px;
    }
    
    body.checkout.has-rating:not(.no-space) {
        padding-top: 92px;
    }


}
