
/* =============================================================== */
/* IMAGE LOOK SIMPLE
/* =============================================================== */
.image-look-simple a {
    display: block;
    overflow: hidden;
}

    .image-look-simple a img {
        transition: all 0.4s ease 0s;
        -webkit-transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
    }

        .image-look-simple a img:hover {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
        }

/* =============================================================== */
/* IMAGE LOOK
/* =============================================================== */

.image-look .inner {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

    .image-look .inner .box-content-overly-white {
        right: 0;
        text-align: center;
    }

    .image-look .inner .img-title {
        color: white;
        display: block;
        font-size: 20px;
        padding: 0 10px;
        position: absolute;
        text-align: center;
        text-shadow: 1px 0px 2px #555;
        text-transform: uppercase;
        top: 40%;
        width: 100%;
        z-index: 100;
        transition: opacity .2s linear, visibility .2s linear;
    }

    .image-look .inner:hover .img-title {
        visibility: hidden;
        opacity: 0;
    }

    .image-look .inner .box-text-cell-inner h1 {
        font-size: 20px;
    }

    .image-look .inner:hover .box-content-overly-white {
        opacity: 1;
        background: rgba(255, 255, 255, 0.8);
        visibility: visible;
    }



/* Content template 2 */
.content-temp2 {
    padding: 0 10px;
}

    .content-temp2 .inner {
        display: block;
        margin-bottom: 20px;
        position: relative;
    }

        .content-temp2 .inner .overly {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            display: block;
            transition: background 0s ease 0s, all 0.25s ease 0s;
            -webkit-transition: background 0s ease 0s, all 0.25s ease 0s;
        }

            .content-temp2 .inner .overly .explore-title {
                color: white;
                display: block;
                font-size: 20px;
                padding: 0 10px;
                position: absolute;
                text-align: center;
                text-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
                text-transform: uppercase;
                top: 40%;
                top: calc(50% - 11px);
                transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1) 0s;
                -webkit-transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1) 0s;
                opacity: 1;
                width: 100%;
                z-index: 100;
            }

                .content-temp2 .inner .overly .explore-title::after {
                    color: white;
                    content: "\e258";
                    display: inline-block;
                    font-family: "Glyphicons Halflings";
                    font-size: 0.8em;
                    font-style: normal;
                    font-variant: normal;
                    font-weight: normal;
                    line-height: 1;
                    position: static;
                    text-transform: none;
                    width: 0;
                    opacity: 0;
                    overflow: hidden;
                    transition: all 0.15s cubic-bezier(0.4, 0, 1, 1) 0s;
                    -webkit-transition: all 0.15s cubic-bezier(0.4, 0, 1, 1) 0s;
                }

        .content-temp2 .inner:hover .explore-title::after {
            width: 20px;
            opacity: 1;
        }


        .content-temp2 .inner:hover .overly {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            background-color: #000000;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .content-temp2 .inner:hover .img-title {
            opacity: 0.95 !important;
            visibility: visible !important;
        }

        .content-temp2 .inner:hover .img-block img {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1) 0s;
            -webkit-transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1) 0s;
        }

        .content-temp2 .inner .img-block img {
            transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1) 0s;
        }

        .content-temp2 .inner .img-block {
            max-height: 100%;
            overflow: hidden;
        }


    .content-temp2.text-only .inner {
        border: 1px solid #f5f5f5;
        border-radius: 2px;
        padding: 2px;
    }

        .content-temp2.text-only .inner .overly .explore-title {
            color: #777;
        }

        .content-temp2.text-only .inner .img-block {
            height: 50px;
            background-color: #f5f5f5;
            margin: 4px;
        }



/* Overlay-Container Content template 3,4 */
.overlay-container {
    position: relative;
    display: block;
    overflow: hidden;
}


.overlay-link {
    position: absolute;
    z-index: 10;
    top: 0;
    padding: 15px;
    bottom: 0px;
    left: 0;
    right: 0px;
    background-color: rgba(30, 30, 30, 0.5);
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
    color: #ffffff;
}


.overlay-visible .overlay-bottom, .overlay-visible .overlay-top {
    opacity: 1;
    filter: alpha(opacity=100);
    height: auto !important;
    padding-bottom: 10px;
}


.overlay-bottom, .overlay-top {
    position: absolute;
    top: auto;
    padding: 10px;
    bottom: 0px;
    left: 0;
    right: 0px;
    background-color: rgba(30, 30, 30, 0.5);
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
    height: 0;
    color: #ffffff;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}

.overlay-container.text-slide .overlay-bottom {
    bottom: -45px !important;
}

.overlay-container .text {
    padding: 0 10px;
    min-height: 70px;
}

    .overlay-container .text h3 {
        font-size: 18px;
        font-weight: 300;
        padding-bottom: 8px;
    }

    .overlay-container .text p {
        line-height: 18px;
        margin: 0px;
    }


.overlay-container:not(.text-slide):hover .overlay-link {
    height: 100%;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}

.overlay-container.text-slide:hover .overlay-bottom {
    bottom: 0px !important;
    transition: all 0.3s linear 0s;
}



/* Banner Slider template, Category  template 1 */
.box-content-overly {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    position: absolute;
    right: 5px;
    top: 0;
    visibility: hidden;
    transition: all 0.2s ease 0s;
    width: 100%;
    z-index: 5;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

    .box-content-overly.box-content-overly-white {
        opacity: 0;
    }

.box-text-table {
    display: table;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
}

.box-text-cell {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.box-text-cell-inner.dark {
    color: #333333;
}

.box-text-cell-inner {
    max-width: 90%;
    display: block;
    margin-left: 5%;
    margin-right: 5%;
}





/* =============================================================== */
/* BLOG & SLIDER-BLOGLIST*/
/* =============================================================== */

.blog-slider {
    margin-right: -10px;
    margin-left: -10px;
}

    .blog-slider .blog-item {
        margin: 0 15px 15px;
    }

    .blog-slider .blog-content {
        min-height: 135px;
    }

    .blog-slider .blog-item h2 {
        text-transform: none;
        margin-top: 0;
        padding-bottom: 4px;
        border-bottom: 1px solid #CECECE;
        margin-bottom: 6px;
    }

    .blog-slider .blog-item .main-image {
        margin-bottom: 10px;
    }

    .blog-slider .blog-content {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .blog-slider .blog-short-desc {
        margin-bottom: 0px;
    }



.blog-item {
    margin-bottom: 70px;
}

    .blog-item h2 {
        text-transform: none;
        margin-top: 0;
        padding-bottom: 10px;
    }

    .blog-item .main-image:hover img {
        opacity: 0.8;
    }

    .blog-item .main-image {
        margin-bottom: 20px;
    }

    .blog-item a.readmore {
        font-size: 13px;
        font-weight: 600;
        line-height: 30px;
    }

        .blog-item a.readmore:hover i {
            padding-left: 10px;
        }

        .blog-item a.readmore i {
            padding-left: 5px;
            transition: all 0.3s ease 0s;
        }

.blog-info {
    margin-bottom: 10px;
    color: #777;
    font-size: 12px;
}

.blog-content {
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-short-desc {
    margin-bottom: 20px;
}


/*ERROR-404*/
.error-container {
    max-width: 1140px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    padding: 10px 10px;
}

.error-page .main-container {
    min-height: 700px;
}

.err-bg {
    background: #fff url(/Images/err-bg.png) no-repeat center top;
}

.erorpage .err-header {
    padding-bottom: 60px;
}

.erorpage h1 {
    font-size: 30px;
    padding-bottom: 20px;
}

.erorpage h2 {
    font-size: 20px;
    padding-bottom: 15px;
}

.erorpage h4 {
    font-size: 18px;
    padding-bottom: 20px;
}

.erorpage .err-right img {
    max-width: 336px;
    opacity: 0.3;
}

.erorpage .err-desc {
    padding-bottom: 20px;
    font-size: 16px;
}

.erorpage .search-input-box.input-group {
    width: 400px;
    float: left;
    background: #ffffff;
    border: 1px solid #cecece;
}

.erorpage input.search-input.form-control {
    width: 336px;
    height: 45px;
    background: #ffffff;
    text-align: left;
    font-size: 14px;
    border: none;
    box-shadow: none;
}

.erorpage .search-input-box .search-btn {
    font-size: 18px;
    padding: 12px 18px;
    background: #ffffff;
    border: none;
}

.erorpage .err-button {
    font-size: 24px;
    padding: 20px 0;
}

.erorpage .err-button {
    font-size: 14px;
    padding: 20px 0;
    display: inline-block;
    font-weight: 500;
}

    .erorpage .err-button i {
        font-size: 15px;
        margin-right: 7px;
    }

.erorpage .err-categories {
    padding-top: 40px;
}

    .erorpage .err-categories > div {
        float: left;
        margin: 0 10px 10px 0;
    }

        .erorpage .err-categories > div > a {
            font-size: 15px;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
            -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            padding: 10px 15px;
            display: inline-block;
            background: #fff;
        }

            .erorpage .err-categories > div > a:hover {
                background: #f8f8f8;
            }

.erorpage .module-title h2 {
    font-size: 18px;
}

@media (max-width:767px) {
    .err-bg {
        background: url(/Images/err-mob-bg.png) no-repeat left top;
    }

    .erorpage .search-input-box.input-group {
        width: 360px;
        float: left;
    }

    .erorpage input.search-input.form-control {
        width: 315px;
        height: 45px;
    }
}



/*ERROR-404*/

.pnl-shipper {
    margin: 0;
    width: 100%;
}

.pnl-shipper-btn:checked + .pnl-shipper-label {
    background: rgb(238, 238, 238);
    border-color: #cfcfcf;
}

.pnl-shipper-label {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 600;
    margin: 0 auto 10px;
    padding: 16px 15px 16px 48px;
    position: relative;
    transition: .3s ease all;
    width: auto;
    margin-right: 10px;
    font-size: 13px;
}

.pnl-shipper-btn:checked + .pnl-shipper-label:before {
    background-color: #585858;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNiIgaGVpZ2h0PSIyMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIyLjAyOTY4IC00MC4wOTAzIDI2IDIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48IS0tR2VuZXJhdGVkIGJ5IElKU1ZHIChodHRwczovL2dpdGh1Yi5jb20vaWNvbmphci9JSlNWRyktLT48cGF0aCBkPSJNMjcuOTc0MywtMzYuMTI3MmMwLDAuNDQ2NDI4IC0wLjE1NjI1LDAuODI1ODkzIC0wLjQ2ODc1LDEuMTM4MzlsLTEyLjEyMDUsMTIuMTIwNWwtMi4yNzY3OSwyLjI3Njc5Yy0wLjMxMjUsMC4zMTI1IC0wLjY5MTk2NCwwLjQ2ODc1IC0xLjEzODM5LDAuNDY4NzVjLTAuNDQ2NDI4LDAgLTAuODI1ODkzLC0wLjE1NjI1IC0xLjEzODM5LC0wLjQ2ODc1bC0yLjI3Njc5LC0yLjI3Njc5bC02LjA2MDI3LC02LjA2MDI3Yy0wLjMxMjUsLTAuMzEyNSAtMC40Njg3NSwtMC42OTE5NjUgLTAuNDY4NzUsLTEuMTM4MzljMCwtMC40NDY0MjkgMC4xNTYyNSwtMC44MjU4OTMgMC40Njg3NSwtMS4xMzgzOWwyLjI3Njc5LC0yLjI3Njc5YzAuMzEyNSwtMC4zMTI1IDAuNjkxOTY1LC0wLjQ2ODc1IDEuMTM4MzksLTAuNDY4NzVjMC40NDY0MjksMCAwLjgyNTg5MywwLjE1NjI1IDEuMTM4MzksMC40Njg3NWw0LjkyMTg4LDQuOTM4NjJsMTAuOTgyMSwtMTAuOTk4OWMwLjMxMjUsLTAuMzEyNSAwLjY5MTk2NCwtMC40Njg3NSAxLjEzODM5LC0wLjQ2ODc1YzAuNDQ2NDI4LDAgMC44MjU4OTMsMC4xNTYyNSAxLjEzODM5LDAuNDY4NzVsMi4yNzY3OCwyLjI3Njc5YzAuMzEyNSwwLjMxMjUgMC40Njg3NSwwLjY5MTk2NCAwLjQ2ODc1LDEuMTM4MzlaIiB0cmFuc2Zvcm09InNjYWxlKDEuMDAxOTgpIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pnl-shipper-label:before {
    background: #eee;
    border-radius: 50%;
    content: '';
    height: 20px;
    left: 15px;
    position: absolute;
    top: calc(50% - 10px);
    transition: .3s ease background-color;
    width: 20px;
}

.pnl-shipper-btn {
    position: absolute;
    visibility: hidden;
}

/*#region Delivery Method*/


.pnl-deliverymethod {
    margin: 0;
    width: 100%;
}
/*
.pnl-deliverymethod-btn:checked + .pnl-deliverymethod-label {
    background: rgb(238, 238, 238);
    border-color: #cfcfcf;
}*/

.pnl-deliverymethod-label {
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 600;
    margin: 0 auto 10px;
    padding: 8px 15px 8px 25px;
    position: relative;
    transition: .3s ease all;
    width: auto;
    margin-right: 10px;
    font-size: 13px;
}

.pnl-deliverymethod-btn:checked + .pnl-deliverymethod-label:before {
    background-color: #585858;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNiIgaGVpZ2h0PSIyMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIyLjAyOTY4IC00MC4wOTAzIDI2IDIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48IS0tR2VuZXJhdGVkIGJ5IElKU1ZHIChodHRwczovL2dpdGh1Yi5jb20vaWNvbmphci9JSlNWRyktLT48cGF0aCBkPSJNMjcuOTc0MywtMzYuMTI3MmMwLDAuNDQ2NDI4IC0wLjE1NjI1LDAuODI1ODkzIC0wLjQ2ODc1LDEuMTM4MzlsLTEyLjEyMDUsMTIuMTIwNWwtMi4yNzY3OSwyLjI3Njc5Yy0wLjMxMjUsMC4zMTI1IC0wLjY5MTk2NCwwLjQ2ODc1IC0xLjEzODM5LDAuNDY4NzVjLTAuNDQ2NDI4LDAgLTAuODI1ODkzLC0wLjE1NjI1IC0xLjEzODM5LC0wLjQ2ODc1bC0yLjI3Njc5LC0yLjI3Njc5bC02LjA2MDI3LC02LjA2MDI3Yy0wLjMxMjUsLTAuMzEyNSAtMC40Njg3NSwtMC42OTE5NjUgLTAuNDY4NzUsLTEuMTM4MzljMCwtMC40NDY0MjkgMC4xNTYyNSwtMC44MjU4OTMgMC40Njg3NSwtMS4xMzgzOWwyLjI3Njc5LC0yLjI3Njc5YzAuMzEyNSwtMC4zMTI1IDAuNjkxOTY1LC0wLjQ2ODc1IDEuMTM4MzksLTAuNDY4NzVjMC40NDY0MjksMCAwLjgyNTg5MywwLjE1NjI1IDEuMTM4MzksMC40Njg3NWw0LjkyMTg4LDQuOTM4NjJsMTAuOTgyMSwtMTAuOTk4OWMwLjMxMjUsLTAuMzEyNSAwLjY5MTk2NCwtMC40Njg3NSAxLjEzODM5LC0wLjQ2ODc1YzAuNDQ2NDI4LDAgMC44MjU4OTMsMC4xNTYyNSAxLjEzODM5LDAuNDY4NzVsMi4yNzY3OCwyLjI3Njc5YzAuMzEyNSwwLjMxMjUgMC40Njg3NSwwLjY5MTk2NCAwLjQ2ODc1LDEuMTM4MzlaIiB0cmFuc2Zvcm09InNjYWxlKDEuMDAxOTgpIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pnl-deliverymethod-label:before {
    background: #eee;
    border-radius: 50%;
    content: '';
    height: 20px;
    left: 0px;
    position: absolute;
    top: calc(50% - 10px);
    transition: .3s ease background-color;
    width: 20px;
}

.pnl-deliverymethod-btn {
    position: absolute;
    visibility: hidden;
}

/*.pnl-deliverymethod-container {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

    .pnl-shipper-btn, .pnl-deliverymethod-container pnl-deliverymethod-label {
        width: 48%;*/ /* Input ve label aras?nda biraz bo?luk b?rakmak için */
    /*}*/


/*#endregion*/




/*#region deliverymethod*/
.deliverymethod {
    margin-bottom: 20px;
}
    .deliverymethod .nav-tabs {
        text-align: left;
    }
    .deliverymethod .nav-tabs:after {
        display: none;
    }
        .deliverymethod .nav-tabs > li {
            margin-bottom: -1px;
        }
            .deliverymethod .nav-tabs > li > a {
                border-style: solid;
                border-width: 1px 1px 0 1px;
                border-color: #e5e5e5;
            }
            .deliverymethod .nav-tabs li a, .deliverymethod .nav-tabs > li:hover > a {
                margin: 0 10px 0 0;
            }
            .deliverymethod .nav-tabs > li.active > a, .deliverymethod .nav-tabs > li.active > a:hover, .deliverymethod .nav-tabs > li.active > a:focus {
                border-style: solid;
                border-width: 1px 1px 0 1px;
                border-color: #e5e5e5;
                box-shadow: none;
            }
    .deliverymethod .tab-content {
        margin-top: 0;
        border-style: solid;
        border-width: 1px;
        border-color: #e5e5e5;
        border-radius: 0 8px 8px 8px;
    }
.deliverymethod .panel-body {
    padding: 25px 15px;
}
.deliverymethod .btn.btn-xs {
    font-size: 12px;
    padding: 4px 14px;
}
.deliverymethod .deliverymethod-content {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
/*#endregion deliverymethod*/







/*#region switch*/
.switch-box {
    padding: 15px 10px;
}

    .switch-box span {
        font-size: 16px;
        line-height: 19px;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
    margin-right: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #808080;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 14.17px;
        width: 14.84px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #26D682;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.switch.switch-sm {
    width: 28px;
    height: 16px;
    margin-right: 10px;
    margin-bottom: 0px;
    line-height: 16px;
}

    .switch.switch-sm .slider:before {
        height: 10.17px;
        width: 10.84px;
        left: 3px;
        bottom: 3px;
    }

input:checked + .switch.switch-sm .slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.switch.switch-sm .slider:before {
    height: 10.17px;
    width: 10.84px;
    left: 3px;
    bottom: 3px;
}
/*#endregion switch*/
/*#region modal*/

.modal-footer {
    background: #fff;
    border-top: none;
    padding: 10px 20px 20px;
}

.modal-body {
    max-height: 100%;
    flex: 1 1 auto;
    overflow-y: auto;
}

    .modal-body::-webkit-scrollbar {
        width: 4px;
        border-radius: 3px;
        background-color: #00000033;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background-color: #000;
        border-radius: 3px;
    }

.modal .close {
    opacity: 1;
    font-weight: 500;
    padding: 26px;
    font-size: 34px;
    display: block;
    line-height: 10px;
    position: absolute;
    right: 0;
    text-shadow: none;
    top: 0;
    z-index: 1;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog,
.modal.bottom .modal-dialog {
    position: fixed;
    margin: auto;
    width: 480px;
    height: 100%;
    max-width: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content,
.modal.bottom .modal-content {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.modal.left .modal-header,
.modal.right .modal-header,
.modal .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 10px 20px;
    margin-bottom: 15px;
}

.modal.left .modal-title, .modal.right .modal-title, .modal .modal-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 10px 10px 40px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -480px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -480px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}
/*Bottom*/

.modal.bottom.fade .modal-dialog {
    bottom: -480px;
    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    transition: opacity 0.3s linear, bottom 0.3s ease-out;
    width: 100%
}

.modal.bottom.fade.in .modal-dialog {
    bottom: 0;
}


.modal div#alert-result-error, .modal div#alert-result-success, .modal div#alert-inform, .alert-inform {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal #alert-inform .modal-body .alert-msg {
    font-size: 16px;
    margin-bottom: 20px;
}

.modal-body.alert-result {
    text-align: center;
    margin-top: 35px;
}

    .modal-body.alert-result p {
        font-size: 24px;
        line-height: 28px;
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .modal-body.alert-result span {
        font-size: 16px;
        line-height: 20px;
    }

    .modal-body.alert-result i {
        background: #26D682;
        padding: 15px;
        font-size: 36px;
        border-radius: 50%;
        color: #fff;
    }

@media (max-width:991px) {
    .modal.left .modal-title, .modal.right .modal-title {
        font-size: 20px;
        line-height: 24px;
    }

    .modal.right.fade.in .modal-dialog {
        width: 100%;
    }
}


/*#endregion modal*/
/*#region modal-popup*/
.modal {
    overflow: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem auto;
    pointer-events: none;
    background: none;
}

.modal-address .modal-dialog {
    max-width: 700px;
}

.modal-appmessage .modal-dialog {
    max-width: 500px;
}

.modal-review .modal-dialog {
    max-width: 600px;
}

.modal-dialog.modal-xs {
    max-width: 460px;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - 1rem);
        height: min-content;
        content: ""
    }

.modal-popup .modal-dialog {
    max-width: 350px;
}

.modal-popup .modal-header {
    border: none;
    text-align: center;
    margin: 0;
    padding: 14px 14px 0;
}

    .modal-popup .modal-header:after, .modal-popup .modal-header:before {
        content: none;
    }

.modal-popup .close {
    position: relative;
    padding: 10px 10px 10px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    margin: 0 auto;
}

.modal-popup .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 20px;
    text-align: center;
}

    .modal-popup .modal-body p, .modal-popup .modal-body .message {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .modal-popup .modal-body .btn {
        min-width: 176px;
    }

.modal-title-site {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 300;
    padding: 13px 0;
}


.modal-appmessage .modal-title {
    font-size: 20px;
    font-weight: 300;
    padding-top: 5px;
    padding-bottom: 5px;
}

.modal-appmessage .modal-body {
    min-height: 100px;
}

.modal-appmessage .close {
    color: #eee;
    opacity: 0.95;
}

/*for safari scroll problem*/
/*body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}*/

@media (min-width: 576px) {
    .modal-dialog {
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

        .modal-dialog-centered::before {
            height: calc(100vh - 3.5rem);
            height: min-content
        }
}
/*#endregion modal-popup*/
/*#region modal-inform-product*/
.inform-product {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}

    .inform-product .inform-prdimg {
        max-width: 90px;
        margin-right: 30px;
    }

.inform-prddesc .price {
    display: flex;
    align-items: center;
}

.inform-prddesc .product-name {
    font-size: 14px;
    line-height: 16px;
}

.inform-prddesc .product-brnd {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 16px;
}

.inform-prddesc .product-adv {
    margin-bottom: 5px;
    font-size: 12px;
}

.inform-prddesc .product-discount {
    margin-right: 10px;
    display: inline-block;
    vertical-align: super;
}

.inform-prddesc .discount {
    font-size: 12px;
    font-weight: 600;
    padding: 6px;
    border-radius: 0;
    line-height: 14px;
    height: auto;
}

.inform-prddesc .price-standard {
    font-size: 12px;
    text-decoration: line-through;
    display: block;
    line-height: 14px;
}

.inform-prddesc .price-sales {
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    display: block;
}

.alert-inform .alert-msg {
    padding: 20px 0;
}
/*#endregion modal-inform-product*/

