/**
 *  @author    Shipmondo
 *  @copyright 2021 Shipmondo
 *  @license   All rights reserved
 */

body.shipmondo-modal-open {
    overflow: hidden;
}

.shipmondo-modal {
    visibility: hidden;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out;
    -moz-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out;
    -ms-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out;
    -o-transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out;
    transition: visibility 0s ease-in-out 0.3s, opacity 0.3s ease-in-out;
}

.shipmondo-hidden {
    display: none;
}

.shipmondo-modal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 560px;
    max-width: 90%;
    max-height: 95%;
}

.shipmondo-modal.visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.shipmondo-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    color: #999;
    border: none;
    cursor: pointer;
}

.shipmondo-modal-close:hover {
    color: inherit;
    background: none;
}

.shipmondo-modal-close:focus {
    outline: 0;
}

.shipmondo-loader-wrapper {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.shipmondo-loader {
    border: 8px solid #DDD;
    border-top: 8px solid #777;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: shipmondo-loader-spin 1s linear infinite;
    -moz-animation: shipmondo-loader-spin 1s linear infinite;
    -o-animation: shipmondo-loader-spin 1s linear infinite;
    animation: shipmondo-loader-spin 1s linear infinite;
}

.shipmondo-error {
    display: none;
    background-color: #FFF;
    padding: 24px;
    text-align: center;
    margin: auto;
}

.shipmondo-error.visible {
    display: block;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark_circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0 0 0 #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark_check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.shipmondo-modal-checkmark {
    display: none;
}

.shipmondo-modal-checkmark.visible {
    display: block;

}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 50px #7ac142;
    }
}

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

@-moz-keyframes shipmondo-loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes shipmondo-loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shipmondo-loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.shipmondo-modal-content {
    width: 100%;
    background-color: #FFF;
    position: relative;
    max-height: 900px;
    box-sizing: border-box;
    display: none;
}

.shipmondo-modal-content.visible {
    display: block;
}

.shipmondo-modal-content.error {
    text-align: center;
    padding: 24px;
}

#shipmondo-list-wrapper {
    max-height: 312px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.shipmondo-modal-header {
    /*padding: 40px 40px 24px;*/
    /*height: 136px;*/
    padding: 30px 30px 24px;
    height: 120px;
    box-sizing: border-box;
}

.shipmondo-modal-header h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
}

.shipmondo-pickoup-point-counter {
    margin: 0;
}

#shipmondo-map-wrapper {
    position: relative;
}

#shipmondo-map {
    width: 100%;
    height: 360px;
    background: #999;
}

.shipmondo-modal-footer,
.shipmondo-radio-footer,
.shipmondo-dropdown-footer {
    text-align: center;
    color: #999;
    padding: 10px 20px;
    background: #FFF;
    position: relative;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    line-height: 20px;
    z-index: 10;
}
.shipmondo-radio-footer{
    background: none;
    z-index: 0;
}


.shipmondo-modal-footer:before,
.shipmondo-radio-footer:before,
.shipmondo-dropdown-footer:before {
    content: '';
    display: block;
    height: 24px;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0), #FFF);
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}

.shipmondo-radio-footer:before{
    background: none;
}


.shipmondo-radio-content {
    position: relative;
    /*margin-bottom: 30px;*/
    min-height: 68px;
    box-sizing: border-box;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul, .shipmondo-radio-content ul.shipmondo-shoplist-ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin: 32px 23px 0 40px;*/
    /*margin: 25px 15px 0 15px;*/
    margin: 25px 25px 0 25px;
}

.shipmondo-radio-content ul.shipmondo-shoplist-ul {
    margin: 0 10px;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list, .shipmondo-radio-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list {
    list-style: none;
    padding: 0;
    cursor: pointer;
    width: 50%;
    float: left;
    margin-bottom: 10px;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list:nth-of-type(2n+1), .shipmondo-radio-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list:nth-of-type(2n+1) {
    clear: left;
}

.shipmondo-pickup-point-info {
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding: 5px 5px 5px 50px;
}

.shipmondo-pickup-point-name, .shipmondo-pickup-point-address, .shipmondo-pickup-point-zipcode-city {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    height: 1.2em;
}


.shipmondo-pickup-point-info .custom-radio{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 5px;
    z-index: 5;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.shipmondo-radio-content .shipmondo-pickup-point-info .custom-radio{
    z-index: 0;
}

/*.shipmondo-pickup-point-info .shipmondo-radio-button {*/
/*display: -webkit-flex;*/
/*display: -ms-flexbox;*/
/*display: flex;*/
/*-webkit-align-items: center;*/
/*-ms-flex-align: center;*/
/*align-items: center;*/
/*-webkit-justify-content: center;*/
/*-ms-flex-pack: center;*/
/*justify-content: center;*/
/*position: absolute;*/
/*!*border: 2px solid #9e9e9e;*!*/
/*border: 2px solid #7a7a7a;*/
/*border-radius: 100%;*/
/*height: 20px;*/
/*width: 20px;*/
/*!*height: 24px;*!*/
/*!*width: 24px;*!*/
/*top: 50%;*/
/*left: 5px;*/
/*z-index: 5;*/
/*-webkit-transform: translate(0, -50%);*/
/*-ms-transform: translate(0, -50%);*/
/*transform: translate(0, -50%);*/
/*}*/

/*.shipmondo-pickup-point-info:hover .shipmondo-radio-button {*/
/*!*border-color: #1a1a1a;*!*/
/*}*/

/*.shipmondo-pickup-point-info .shipmondo-radio-button:before {*/
/*display: block;*/
/*content: '';*/
/*border-radius: 100%;*/
/*height: 12px;*/
/*width: 12px;*/
/*!*height: 16px;*!*/
/*!*width: 16px;*!*/
/*top: 3px;*/
/*left: 3px;*/
/*margin: auto;*/
/*transition: background 0.1s linear;*/
/*-webkit-transition: background 0.1s linear;*/
/*}*/

/*.shipmondo-shop-list.selected .shipmondo-radio-button {*/
/*!*border-color: #1a1a1a;*!*/
/*!*border-color: #2fb5d2;*!*/
/*}*/

/*.shipmondo-shop-list.selected .shipmondo-radio-button:before {*/
/*!*background: #1a1a1a;*!*/
/*background: #2fb5d2;*/
/*}*/

#selected_shop_context,
#shipmondo_zicode_error_text,
.shipping_company_required {
    display: none;
    margin-bottom: 7px;
    margin-top: 5px;
    border: 1px solid rgb(238, 238, 238);
    font-size: 13px;
    line-height: 17px;
    padding: 5px 10px;
    font-style: italic;
}

#selected_shop_context.active,
#shipmondo_zicode_error_text.active,
.shipping_company_required.active {
    display: block;
}

#shipmondo-button-wrapper {
    width: 100%;
    text-align: center;
}

#shipmondo-select-shop {
    margin: 10px auto 0;
}

#shipmondo_find_shop_btn {
    margin: 10px 0 !important;
    width: 100%;
    white-space: normal;
}

.shipmondo-shop-id {
    display: none;
}

.shipmondo-shop-header {
    font-style: normal;
}

.shipmondo-pickup-point-name,
.shipmondo-shop-name {
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .shipmondo-modal-header h4 {
        font-size: 1.4em;
    }

    .shipmondo-pickoup-point-counter {
        font-size: 0.9em;
    }

    #shipmondo-map {
        height: 280px;
    }

    .shipmondo-modal-header {
        height: auto;
    }

    .shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list {
        width: 100%;
        float: none;
        margin: 0 auto 24px;
    }
}

@media screen and (max-height: 960px) {
    .shipmondo-modal-content .shipmondo-removable-content, .shipmondo-dropdown-content .shipmondo-removable-content {
        margin-bottom: 5%;
    }
}

#shipmondo-map .gm-style-iw div {
    overflow: visible !important;
}

#shipmondo-map .gm-style .gm-style-iw-c {
    padding: 14px 12px 10px !important;
}

#shipmondo_pickup_point_selector_dropdown_container {
    position: relative;
    margin-top: -10px;
    margin-bottom: 10px;
}

#shipmondo_pickup_point_selector_dropdown {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FFF;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    z-index: 100;
    width: 100%;
    min-width: 320px;
    border: 1px solid #EFEFEF;
}

.shipmondo-dropdown-content .shipmondo-shoplist-ul {
    margin: 0;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list {
    width: 100%;
    position: relative;
    padding: 8px 10px;
    cursor: pointer;
}

#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list.selected,
#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list:hover {
    background: #f7f7f7;
}

#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list:last-child {
    margin-bottom: 10px;
}

#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list .agent_icon {
    display: block;
    width: 50px;
    margin-right: 20px;
    left: 15px;
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

#shipmondo_pickup_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list .shipmondo-pickup-point-info {
    padding: 0 0 0 70px;
}

.shipmondo-modal.loading .shipmondo-loader-wrapper,
#shipmondo_pickup_point_selector_dropdown.loading .shipmondo-loader-wrapper,
.shipmondo-radio-content.loading .shipmondo-loader-wrapper {
    display: block;
}

.shipmondo-dropdown-footer {
    position: absolute;
    bottom: 0;
}

.shipmondo-dropdown-content.error {
    text-align: center;
    padding: 24px;
}

.shipmondo-dropdown-content-section {
    position: relative;
    margin-bottom: 40px;
    min-height: 120px;
    box-sizing: border-box;
}

.shipmondo_dropdown_button {
    position: relative;
}

.shipmondo_dropdown_button:after {
    content: '';
    position: absolute;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFF;
}

.shipmondo_dropdown_button.open:after {
    border-bottom: 5px solid #FFF;
    border-top: 0;
}

.shipmondo-shipping-field-wrap {
    margin: 8px 0 12px;
}

/*Mobile*/
@media screen and (max-width: 767px) {
    .shipmondo-shipping-field-wrap {
        margin: 8px 15px 12px;
    }

    /*.shipmondo-modal-header {*/
    /*padding: 40px 15px 24px;*/
    /*}*/
    .shipmondo-modal-content ul.shipmondo-shoplist-ul {
        margin: 32px 15px 0 15px;
    }

    .shipmondo-modal-header h4 {
        font-size: 1.4em;
    }

    .shipmondo-pickoup-point-counter {
        font-size: 0.9em;
    }

    #shipmondo-map {
        height: 280px;
    }

    .shipmondo-modal-header {
        height: auto;
    }

    .shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list, .shipmondo-radio-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list {
        width: 100%;
        float: none;
        margin: 0 auto 24px;
    }
}

.shipmondo_dropdown_button #shipmondo_find_shop_btn {
    padding-right: 40px;
}

.select-service-point-to-continue {
    display: none;
    float: right;
}