﻿.Action3DButton {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #bab1ba));
    background: -moz-linear-gradient(top, #ededed 5%, #bab1ba 100%);
    background: -webkit-linear-gradient(top, #ededed 5%, #bab1ba 100%);
    background: -o-linear-gradient(top, #ededed 5%, #bab1ba 100%);
    background: -ms-linear-gradient(top, #ededed 5%, #bab1ba 100%);
    background: linear-gradient(to bottom, #ededed 5%, #bab1ba 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#bab1ba',GradientType=0);
    background-color: #ededed;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 5px;
    border: 1px solid #d6bcd6;
    display: inline-block;
    cursor: pointer;
    color: black !important;
    font-family: Arial;
    font-size: 17px;
    color:black;
    padding: 7px 25px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #e1e2ed;
}

    .Action3DButton:hover {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bab1ba), color-stop(1, #ededed));
        background: -moz-linear-gradient(top, #bab1ba 5%, #ededed 100%);
        background: -webkit-linear-gradient(top, #bab1ba 5%, #ededed 100%);
        background: -o-linear-gradient(top, #bab1ba 5%, #ededed 100%);
        background: -ms-linear-gradient(top, #bab1ba 5%, #ededed 100%);
        background: linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bab1ba', endColorstr='#ededed',GradientType=0);
        background-color: #bab1ba;
    }

    .Action3DButton:active {
        position: relative;
        top: 1px;
    }

.Action3DButtonActionSuccess {
    background: linear-gradient(to bottom, green 5%, lightgreen 100%);
}

.orderTracking_ColorDot {
    height: 15px;
    width: 15px;
    left: 0px;
    border-radius: 50%;
    display: inline-block;
    float: left;
}

.orderTracking_ColorText {
    margin-left: 10px;
    float: left;
}

.orderTracking_Container {
    width: fit-content;
}

@media only screen and (max-width: 800px) {
    .orderTracking_Container {
        margin: 0 auto;
        display: block;
    }
}

.BackToShopping {
    font-family: sans-serif;
    font-size: medium;
    display: block;
    text-align: center;
    font-weight: bold;
    color: #1f1f9a;
    margin-bottom: 50px;
}

    .BackToShopping:hover {
        font-weight: bold;
        font-size: larger;
        color: blue;
    }

.infoShopDigest {
    font-family: sans-serif;
    font-size: medium;
    display: block;
    font-weight: bold;
    color: #1f1f9a;
    margin-bottom: 50px;
}

.infoShopDigest:hover {
    font-weight: bold;
    font-size: larger;
    color: blue;
}

/*=================== ProductVariantsNavigator*/
.variant_caption {
    font-weight: bold;
}

.variant_box {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    border-style: ridge;
    border-color: #c4c4d0;
    border-width: thin;
    margin-top: 5px;
    width: 70px;
    float: left;
}

.variant_text {
    display: block;
    text-align: center;
    box-sizing: border-box;
    min-height: 40px;
}

.variant_image {
    margin-top: 3px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body.disable-scroll {
    overflow: hidden;
}

.center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}
/*=============================================*/






















.wrap-collabsible {
    margin-bottom: 1.2rem 0;    
}

.lbl-toggle {
    display: block;
    font-weight:normal;
    font-family: monospace;
    font-size: 15px;
    text-transform: none;
    text-align: center;
    padding: 1rem;
    color: #8e8e8e;
    background: #FAE042;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s ease-out;
    background-color: #fbfbfb;
    font-style: italic;    
    line-height:0;
    height:35px;
}

    .lbl-toggle:hover {
        color: #7C5A0B;
    }

    .lbl-toggle::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: .7rem;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;    
    transition: max-height .25s ease-in-out;
    overflow: auto;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 1000vh;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: rgba(250, 224, 66, .2);
    border-bottom: 1px solid rgba(250, 224, 66, .45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
}

.ajax-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*admin customization*/
.nav.nav-treeview{
    padding-left: 30px!important;
}

.nav-item.has-treeview.menu-open > a {
  color: #f7ff62 !important;
}
.nav-item.has-treeview.menu-open>.nav-treeview a {
  color: cyan !important;
}

/*hide product-box swipper navigation*/
.product-item .swiper-pagination {
  display: none !important;
}
.selectizer-fixer-media {
  width: 300px;
}
.inputs .iui-label {
  margin-bottom: 10px;
}
.navigation-profile .buttons {
  margin: 20px auto;
  text-align: center;
}

@media all and (min-width: 769px) {
  .page .product-reviews-page > .title, .barChart {
    margin: 0 auto;
    width: 50%;
    text-align:center;
  }

  .iui-select-option-small {
    width: 100px;
  }

  .iui-select-option-medium {
    width: 200px;
  }

  .iui-select-option-large {
    width: 300px;
  }

  .iui-select-option-extra-large {
    width: 500px;    
  }
}

.selectizer-container-fixer {
  width: 100%;
  vertical-align: middle!important;
  display: inline-block;
}
.inputs .iui-label {

}
.iui-modal{

}

.iui-label-tip-question{
    position:relative;
    float: right;
    top:4px;
}

.selectize-dropdown .selected {
  background-color: #7bff291a !important;
  color: black !important;
  border-radius: 4px;
  border-style: solid;
  border-width: thin;
  border-color: lightgrey;
  margin: 1px;
}
.navigation-profile .iui-close-modal-button {
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 20px;
}
  .iui-close-modal-button:hover {
    color: #8d8d8d;
    cursor:pointer;
  }

@media all and (min-width: 1000px) {
  .checkoutNav {
    display: flex;    
  }

  .checkoutNavInner {
    display: flex;
    margin: auto;
    max-width: fit-content;
  }
}
@media all and (max-width: 999px) {
  .checkout-shoppingcart {
   position: absolute;
   top:10px;
   right:5px;
  }
}
.page.search-page .search-input {
  display: none !important;
}
.page.search-page .page-title {
  display: none !important;
}
