/* Inter - latin */
@font-face {
  font-family: 'Inter var experimental';
  font-weight: 400;
  font-display: swap;
  font-style: oblique 0deg 10deg;
  src: url("/fonts/Inter.var.woff2?v=3.19") format("woff2");
}
/* mulish-regular - latin */
 @font-face {
     font-family: 'Mulish';
     font-style: normal;
     font-weight: 400;
     src: url('/fonts/mulish-v5-latin-regular.eot');
    /* IE9 Compat Modes */
     src: local(''), url('/fonts/mulish-v5-latin-regular.eot?#iefix') format('embedded-opentype'), 
    /* IE6-IE8 */
     url('/fonts/mulish-v5-latin-regular.woff2') format('woff2'), 
    /* Super Modern Browsers */
     url('/fonts/mulish-v5-latin-regular.woff') format('woff'), 
    /* Modern Browsers */
     url('/fonts/mulish-v5-latin-regular.ttf') format('truetype'), 
    /* Safari, Android, iOS */
     url('/fonts/mulish-v5-latin-regular.svg#Mulish') format('svg');
    /* Legacy iOS */
}
/* barlow-regular - latin */
 @font-face {
     font-family: 'Barlow';
     font-style: normal;
     font-weight: 400;
     src: url('/fonts/barlow-v5-latin-regular.eot');
    /* IE9 Compat Modes */
     src: local(''), url('/fonts/barlow-v5-latin-regular.eot?#iefix') format('embedded-opentype'), 
    /* IE6-IE8 */
     url('/fonts/barlow-v5-latin-regular.woff2') format('woff2'), 
    /* Super Modern Browsers */
     url('/fonts/barlow-v5-latin-regular.woff') format('woff'), 
    /* Modern Browsers */
     url('/fonts/barlow-v5-latin-regular.ttf') format('truetype'), 
    /* Safari, Android, iOS */
     url('/fonts/barlow-v5-latin-regular.svg#Barlow') format('svg');
    /* Legacy iOS */
}
:root{
    --border-radius-size: 10px;
    --stars-color: #ffa534;
    --super-box-shadow:rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    --main-theme-color: #20b765; /* #11af33 */
    --font-size: 16px;
    --closer_icon:#fe8508;
}
html{
overflow-y: scroll;
overflow-x: hidden;
}
html, body{
    line-height: 26px;
    margin: 0;
    padding: 0;
    font-family: 'Inter var experimental', 'Mulish', sans-serif;
    color: var(--main-font-color);
    background: var(--background-color);
    font-size: var(--font-size);
}
h1,h2,h3,h4,h5,h6{
    padding: 10px;
}
.main-ul{
        list-style-type: none;
}
.super-topic, .topic, .sub-topic, .left-sub-topic{
    font-weight: 700;
}
.super-topic{
    text-align: center;
    font-size: 28px;
    text-shadow: 0 4px 3px #0000000a, 0 8px 13px #0000001a, 0 18px 23px #0000001a;
}
.topic{
    font-size: 25px;
}
.sub-topic{
    text-align: center;
    font-size: 20px;
}
.left-sub-topic {
    text-align: left;
    font-size: 20px;
}
.update {
    font-size: 12px;
    color: var(--main-theme-color);
}
.main-header-topic{
    font-weight: 700;
    text-align: center;
    font-size: 25px;   
    margin: 10px;
}
a{
    color: var(--main-link);
    text-decoration: none;
}
a:hover{
    color:#8ebbff;
}
.main-page-controller{
    width: 100%;
    position: relative;
    min-height: 100vh; 
}
.sub-main-page-controller{
    margin-top: 44px;
    word-break: break-word;
    position: relative;
    padding-bottom: 2px;
}
.normal-page-controller{
    width: 50%;
    margin: 60px auto 20px;
    padding: 10px 15px;
    border-radius: var(--border-radius-size);
    background-color: var(--boxes-bg); 
}
@media (max-width:1300px){
    .normal-page-controller{
        width:60%;
    }
}
@media (max-width:992px){
    .normal-page-controller{
        width:70%;
    }
}
@media (max-width:780px){
    .normal-page-controller{
        width:80%;
    }
}
@media (max-width: 480px){
.normal-page-controller{
    width: 86%;
  }
}
.nav-bar{
    position: fixed;
    background-color: var(--background-color);
  /*  border-top: 0.5px solid var(--main-theme-color);*/
    width: 100%;
    height: 44px;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 9999999999;
   /* -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;*/
    color: inherit;
}
.nav-bar img, .nav-bar source{
    width: 35px;
    height: 35px;
    margin: 8px 6px 0;
}
.name-of-website{
    font-size: 18px;
}
.navbar-buttons{
    display: none;
    font-size: 28px;
    margin: 8px 10px;
    float: right;
}
.lang_flag{
    width: 15px !important;
    height: 15px !important;
    position: absolute;
    bottom: 23px;
    border-radius: 50%;
    margin-left: 1px !important;
}
.search-recommendations{
    position: fixed;
    z-index: 99999;
    background-color: var(--boxes-bg);
    top: 40px;
    margin: auto;
    overflow-y: scroll;
    left: 15%;
    right: 15%;
    border-bottom-left-radius: var(--border-radius-size);
    border-bottom-right-radius: var(--border-radius-size);
    padding: 10px;
    box-shadow: var(--search-box-shadow);
    display: block;
}
.search-box{
    width:100%;
    position:relative;
    display:flex
}
.search-term{
    width: 100%;
    border-right: none;
    font-family: inherit;
    padding: 5px 0 7px 5px;
    height: 20px;
    border-radius:5px 0 0 5px;
    border: var(--main-border);
    outline: none;
    color: inherit;
    background-color: var(--boxes-bg);
}
.search-term:focus{
    color:#00B4CC
}
.search-button{
    width:40px;
    height:33px;
    border:none;
    background: var(--topic-bg-color);
    color: var(--topic-color);
    border-radius:0 5px 5px 0;
    cursor:pointer;
    font-size:20px;
}
.search-box-wrap{
    width: 33%;
    position: absolute;
    top: 50%;
    left: 34%;
    transform:translate(-50%,-50%);
}
@media (max-width:768px){
   .search-box-wrap{
    width: 50%;
   }
    .search-box-wrap {
    left: 45%;
   }
}
@media (max-width:320px){
    .search-box-wrap{
        display: none;
    }
}
.anchor-controller-in-navbar {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}
.anchor-controller-in-navbar span{
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;    
}
.pro-in-about {
    height: 160px;
    width: auto;
    background: url(https://www.greenappleonline.com/images/internal/background-img.png);
    background-size: cover;
    position: relative;
    z-index: 2;
    margin-top: -10px;
    margin-left: -15px;
    margin-right: -15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.pro-pic{
    width: 130px;
    height: 130px;
    position: absolute;
    display: block;
    bottom: -67px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.pro-name{
    margin-top: 85px;
}
@media (max-width:880px){
.name-of-website{
    display: none;    
 }
}
@media (max-width: 600px){
.anchor-controller-in-navbar span{
    margin-right: 10px;
  }
}
#navbar-close-icon{
    display: none;    
    color: #e2772b;
    position: relative;
    z-index: 999;
}
#register-autho, #profile-autho, #login-autho, #logout-autho{
    padding: 3px 15px;
    font-size: inherit;
    color: inherit;
}
#register-autho, #logout-autho{
    background: transparent;
    border: 1px solid var(--main-theme-color);
    box-shadow: none;
}
#register-autho:hover, #logout-autho:hover{
     background: var(--main-theme-color);    
     color: #ffffff;
}
@media (max-width:1000px){
#register-autho, #logout-autho{
    display: none;
   }    
}
@media (max-width:768px){
#login-autho, #profile-autho{
    display: none;
   }    
}
.notification-count{
    background: var(--main-theme-color);
    padding: 0 2px 4px;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    text-align: center;
    display: inline-block;
    color: var(--background-color);
}
#noti-icon{
    font-size: 22px;
}
@media (max-width:550px){
.anchor-controller-in-navbar .notification-icon{
    display: none;
   } 
}
.general-responsive-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
.accordion-heading {
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}
.accordion-heading span {
    float: right;
}
.accordion-body {
    display: none;
    padding: 0 10px;
}
.side-bar-controller{
    width:30%;
    position:fixed;
    background-color: var(--boxes-bg);
    box-shadow: var(--box-shadow);
    overflow-y: scroll;
    overflow-x: hidden;
    height:100%;
    right: 0;
    bottom:0;
    z-index:9999999;
    padding:10px;
    color: var(--main-font-color);
}
.sub-sidebar{
    position: relative;
    top: 50px;
    left: 10%;
}
.user-pro-in-sidebar{
    background: var(--nav-footer-color);
    box-shadow: var(--main-box-shadow);
    font-size:22px;
    text-align:left;
    margin:0;
    color:#55f09b;
    width: 30%;
    right:0;
    padding: 20px 10px 10px;
    position:fixed;
    z-index:99999;
}
.jquery-onclick-change-body-background, .popup-box-bg{
    background-color:#24242494 !important
}
.sidebar-button-closer{
    font-size: 28px;
    position:fixed;
    color: var(--closer_icon);
    margin:18px;
    z-index:9999999;
    cursor:pointer;
    right: 0;
}
@media (max-width:650px){
    .side-bar-controller, .user-pro-in-sidebar{
        width: 50%;
    }
}
@media (max-width:400px){
    .side-bar-controller, .user-pro-in-sidebar{
        width:80%;
    }
}
.nav-buttons {
    padding: 7px 2px;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: block;
    border-radius: var(--border-radius-size);
    font-size: 28px;
}
.main-footer-controller{
    background-color: var(--nav-footer-color);
    /*box-shadow:var(--footer-box-shadow);*/
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    color: #cdd0e1;
}
.main-footer-controller a{
    color: #b5b5b5;
}
.copyright-note{
    text-align: center;
    font-size: 13px;
    color: #b1aeae;
    padding: 20px;
}
.main-footer-content{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    width: 90%;
    -webkit-flex-wrap: wrap;
    margin: auto;
}
.footer-top-details{
    flex-basis: 25%;
    text-align: left;
}
.footer-bottom-content{
    background: #18191a;
}
.main-footer-controller a:hover{
    color: #ff6640;
}
.social-media-icons i {
    background: #fff;
    border-radius: 50%;
    padding: 7px;
    font-size: 23px;
    margin: 5px;
}
.sub-form-controller{
    padding: 0 20px 20px;
}
.input-val{
    padding: 10px;
    border: var(--input-border);
    background-color: var(--boxes-bg);
    color: #2c95fd;
    outline: none;
    width: 90%;
    margin: 7px auto;
    border-radius: 25px;
    text-align: center;
}
.input-icons{
    margin-right: -60px;
}
.input-icons i{
    position: absolute;
    background-color: var(--light-in-dark-bg-color);
    color: var(--topic-color) !important;
    margin-top: 7px;
    padding: 6px;
    border-radius: 25px 0 0 1.5625pc;
    font-size: 24px;
}
.email-subscribe-form {
    max-width: 40%;
    margin: 10px auto;
    display: block;
}
.or-divider{
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: 15px auto;
}
.or-divider:before, .or-divider:after{
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.or-divider:before {
  margin-right: 10px
}
.or-divider:after {
  margin-left: 10px
} 
.main-button, .close-button{
    outline: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    display: block;
    margin: 10px auto;
    font-family: inherit;
    cursor: pointer;
    padding: 7px 30px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.main-button{
    background-image: linear-gradient(to right, var(--main-theme-color), #43dd56, #5ac95d, var(--main-theme-color));
    box-shadow: var(--main-button-box-shadow);
}
.close-button{
    background-color: var(--unique-bg-color);
    color: inherit;
    display: inline-block;
}
.main-button:hover, .close-button:hover{
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.small-button{
    padding:7px;
    font-size: var(--font-size);
}
.main-button::after {
  content: '';
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: calc(50% - 0.75em);
  top: calc(50% - 0.75em);
  border: 0.15em solid transparent;
  border-right-color: #ffffff;
  border-radius: 50%;
  animation: button-anim 0.7s linear infinite;
  opacity: 0;
}
@keyframes button-anim {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.main-button.loading {
  color: transparent;
}

.main-button.loading::after {
  opacity: 1;
}
.social-media-icons i:hover{
    transform: scale(.9);
    transition: 0.5s;
}
@media (min-width: 500px){
.br-class {
    display: none;
   }
}
.onclick-navbar-change-body-background{
    background-color:#242424d4 !important;
}
.autho-controller{
    padding: 10px;
    background-color: var(--boxes-bg);
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40%;
    border-radius: var(--border-radius-size);
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px){
    .autho-controller{
        width: 50%;
    }
}
@media screen and (max-width:768px){
.autho-controller{
        width: 70%;
    }
}
@media screen and (max-width:480px){
    .autho-controller{
        width: 90%;
    }
}
.autho-buttons{
    display: flex;
    border-radius: 10px 10px 0 0;
    border-top: 3px solid var(--topic-bg-color);
    background: inherit;
    margin: -10px -10px 10px;
}
.autho-buttons input{
    font-family: inherit;
}
#main-login-button, #main-register-button, #main-forgot-button{
    border: none;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    padding: 20px;
    margin-top: 0;
}
.autho-target-load{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(90 90 90 / 68%);
    z-index: 9999999999999;
}
.autho-closer-button{
    background: var(--closer_icon);
    border-radius: 5px;
    border: none;
    position: absolute;
    padding: 6px 12px;
    right: 0;
    top: -28px;
    cursor: pointer;
}
#autho-loader-icon{
    display: none;
    position: fixed;
    left: 50%;top: 50%;
    z-index:99999999999999;
}
.right-displayer{
    margin: auto;
    width: 60%;
}
.main-input{
    width: 100%;
    border-bottom-width: 0.75pt;
    border-top-style: solid;
    border-image: none;
    text-align: center;
    margin-top: 7.5pt;
    padding-bottom: 0.625pc;
    padding-top: 0.625pc;
    border-radius: 25px;
}
@media only screen and (max-width: 480px){
.input-controller, .input-icons {
    width: 96%;
}
}
@media only screen and (max-width: 1000px){
.input-controller, .input-icons {
    width: 76%;
  }
}
.input-controller, .input-icons {
    width: 86%;
    margin: auto;
    display: block;
    border-radius: var(--border-radius-size);
    text-align: left;
    padding: 10px;
}
.input-controller{
    border: var(--input-border);
    background-color: var(--boxes-bg);
    color: #2c95fd;
}
.input-controller i{
    position: absolute;
    background-color: #2b8ded;
    margin-top: 1px;
    color: #fff;
    padding: 13px;
    border-radius: 25px 0 0 1.5625pc;
    position: absolute;
    background-color: dodgerBlue;
    margin-top: 10px;
    color: #fff;
    padding: 7px;
    border-radius: 25px 0 0 1.5625pc;
    transition: .3s;
    font-size: 24px;
}
.important-note, .important-note-warning{
    padding: 12px;
    margin: 10px auto;
    width: 90%;
    border-radius: var(--border-radius-size);
}
.important-note{
    border-left: 8px solid var(--topic-bg-color);
    background-color: var(--important-note-bg);
    color: var(--important-note-color);
}
.important-note-warning{
    border-left: 8px solid #ffa534;
    background-color: #ffa5341a;
    color: #df8652;
}
.dip-class-dif h4{
    color:#0080ff;
    margin:5px
}
.inside-rec-atrr-referer{
    color:#0080ff
}
.inside-rec-atrr-referer:hover{
    text-decoration:underline;
    opacity:.7
}
/*=================ITEM CONTROLLER START =====================================*/
.por-topic-line{
    line-height:30px;
    font-weight:700;
    margin:7px;
    text-align:center;
    font-size:22px;
    word-wrap:break-word
}
.main-row{
    width:97.5%;
    margin:15px auto;
    display:flex;
    align-items:flex-start;
}
.sub_row_1,.sub_row_2,.sub_row_3{
    width:30%;
    margin:10px auto;
    border-radius: var(--border-radius-size);
    height:auto;
    word-break:break-word;
    display:table;
    position:relative;
    background: var(--boxes-bg);
    overflow:hidden
}
/*@media screen and (max-width:740px){
    .main-row{
        width:100%;
        display:block
    }
    .sub_row_1,.sub_row_2,.sub_row_3{
        width:90%
    }
}*/
.second-row{
    width:97.5%;
    margin:10px auto;
    display:flex;
    align-items:flex-start
}
.description-box,.review-box{
    width:43%;
    margin:10px auto;
    padding: 10px;
    border-radius: var(--border-radius-size);
    height:auto;
    word-break:break-word;
    display:table;
    background-color: var(--boxes-bg);
    overflow:hidden;
}
@media screen and (max-width:768px){
    .main-row, .second-row{
        width: 100%;
        display: block;
    }
    .sub_row_1,.sub_row_2,.sub_row_3{
        width:90%;
    }
    .description-box,.review-box{
        width: 85%;
    }
}
.review-box i{
    color:#f93;
}
.box-1-responsive-image{
    margin:auto;
    display:block;
    height:auto;
    width:100%;
}
.m-e-add-to-cart-button:hover{
    opacity:.9;
    box-shadow:rgba(0,0,0,.25) 0 25px 50px -12px;
}
.box-topic{
    font-weight:700;
    color:#0080ff;
    text-decoration:none;
    margin:15px;
    font-size:23px;
}
.box-topic-discount{
    font-style:italic;
    color:#bbbebf;
    margin:5px;
    font-size:20px;
    text-decoration-line:line-through;
    text-decoration-thickness:.3px;
    text-decoration-color:#bbbebf;
}
.box-topic-discount span{
    display:inline-block;
    font-size:16px;
    text-decoration:none;
}
.sub_row_2 p, .description-box .left-sub-topic, .description-box .topic{
    font-weight:700;
    margin-left:15px;
}
.description-list{
    line-height:30px;
    list-style:square;
    position:relative;
    padding-right:5px
}
.seller-and-condition-class{
    bottom: 0;
    padding:10px 0 10px 15px;
    background-color: var(--unique-bg-color);
    width: 100%
}
.seller-p-percentage{
    padding-left:30%;
    font-style:italic;
    font-size:13px
}
.price-data{
    color:green;
    margin:5px
}
.sales-data{
    font-size:13px
}
#busket-button{
    font-size:25px;
    float:right;
    margin:15px auto;
    cursor:pointer
}
#busket-button:hover{
    color: var(--main-theme-color);
    transform:scale(1.1);
    transition:transform 2s
}
.currency_styler{
    font-size: 10px !important;
    color: var(--main-items-color);
    position: relative;
    bottom: 11px;
}
/*=================ITEM CONTROLLER END========================================*/
.dip-class-dif h4:hover{
    text-decoration:underline;
    opacity:.7
}
.dip-class-dif img:hover{
    ;
    opacity:.7
}
.explanation-controller img{
    margin:auto;
    display:block;
    width:100%;
    height:100%;
    border-top-left-radius:10px;
    border-top-right-radius:10px
}
.explanation-controller{
    margin:auto;
    width:100%;
    position:relative;
    justify-content:center;
    display:flex;
    display:-webkit-flex;
    display:-moz-flex;
    -webkit-justify-content:center;
    -moz-justify-content:center;
    -webkit-flex-wrap:wrap
}
.explanation-controller .dip-class-dif{
    transition:background-color 3s;
    background-color: var(--boxes-bg);
    display:table;
    position:relative;
    border-radius:10px;
    margin:5px
}
.explanation-controller .dip-class-dif p{
    padding:0 15px
}
/*.explanation-controller a{
    color:inherit
}*/
@media only screen and (min-width:1300px){
    .dip-class-dif{
        flex-basis:15%
    }
}
@media only screen and (max-width:1300px){
    .dip-class-dif{
        flex-basis:15%
    }
}
@media only screen and (max-width:1100px){
    .dip-class-dif{
        flex-basis:18%
    }
}
@media only screen and (max-width:900px){
    .dip-class-dif{
        flex-basis:23%
    }
}
@media only screen and (max-width:750px){
    .dip-class-dif{
        flex-basis:31%
    }
}
@media only screen and (max-width:500px){
    .dip-class-dif{
        flex-basis:46%
    }
}
@media only screen and (max-width:319px){
    .explanation-controller .dip-class-dif{
        float:left;
        flex-basis:90%;
        margin-right:2.564102564102564%;
        width:48.717948717948715%
    }
    .explanation-controller .dip-class-dif:nth-child(2n+0){
        margin-right:0
    }
}
.main-drop-up-down-controller{
    padding:10px;
    margin:auto;
    width:50%
}
@media only screen and (max-width:600px){
    .main-drop-up-down-controller{
        width:90%
    }
}
.accordion-body{
    display:none;
    padding:0 10px
}
.reader{
    cursor:pointer
}
.panel{
    display:none
}
.panel.show{
    display:block;
    margin-left:20px
}
.por-topic-line{
    font-weight:700;
    margin:7px;
    text-align:center;
    word-wrap:break-word
}
.recommended-pro,.visited-pro,.latest-pro,.popular-pro,.related-pro, .just-for-you-pro, .customer-bought-pro,.customers-also-viewed-pro{
    list-style:none;
    padding:0;
    max-width:100%;
    text-align:center;
    margin:5px;
    color:#777;
    position:relative;
    overflow-x:scroll;
    display:flex
}
.customer-bought-pro img,.visited-pro img,.latest-pro img,.popular-pro img,.related-pro img, .just-for-you-pro img,.recommended-pro img,.customers-also-viewed-pro img{
    border-top-left-radius:10px;
    border-top-right-radius:10px
}
.visited-pro::-webkit-scrollbar,.latest-pro::-webkit-scrollbar,.popular-pro::-webkit-scrollbar,.related-pro::-webkit-scrollbar,.just-for-you-pro::-webkit-scrollbar,.recommended-pro::-webkit-scrollbar,.customer-bought-pro::-webkit-scrollbar,.customers-also-viewed-pro::-webkit-scrollbar{
    display:none
}
ul.visited-pro,ul.latest-pro,ul.popular-pro,ul.related-pro,ul.just-for-you-pro,ul.recommended-pro,ul.customer-bought-pro,ul.customers-also-viewed-pro{
    -ms-overflow-style:none;
    scrollbar-width:none
}
ul.visited-pro li,ul.latest-pro li,ul.popular-pro li,ul.related-pro li,ul.just-for-you-pro li,ul.recommended-pro li,ul.customer-bought-pro li,ul.customers-also-viewed-pro li{
    display:inline-block;
    background-color: var(--boxes-bg);
    margin:5px;
    position:relative;
    text-align:center;
    border-radius:10px;
    height:auto
}
.st-products-desc,.st-products-rating{
    padding:8px 10px;
    text-align:left;
    display:block;
    word-break:break-word;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    max-height:50px;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    color: var(--main-items-color);
    font-size:14px
}
.st-products-desc:hover{
    color: var(--main-theme-color);
}
.st-products-price,.st-products-button{
    display:inline-block;
    font-size:13px;
    font-weight:700
}
.st-products-price{
    float:left;
    color:#0080ff;
    font-size:14px;
    padding:6px 10px
}
.pro-price-discount{
    text-decoration-line:line-through;
    text-decoration-thickness:.3px;
    text-decoration-color:#bbbebf;
    font-style:italic;
    color:#bbbebf;
    width:100%;
    display:inline-block;
    position:relative;
    left:10px
}
.st-products-button{
    float: right;
    background-color: var(--main-theme-color);
    color: #fff;
    padding: 0 8px;
    border-radius: 5px;
    border: none;
    box-shadow: 0 3px 10px -3px var(--main-theme-color);
    outline: none;
    margin: 5px;
}
.st-products-button:hover{
    color:#fff;
    opacity:.7;
    box-shadow:rgba(0,0,0,.25) 0 25px 50px -12px;
    box-shadow:rgba(0,0,0,.25) 0 25px 50px -12px
}
.price-and-button-displayer{
    width:100%;
    display:inline-block;
    font-size:14px;
    font-weight:700
}
.stars-and-button-price{
    width:100%
}
@media (max-width:600px){
    .arrow-indicators{
        display:none
    }
}
.arrow-indicators span:first-child i{
    left:0;
    float:left;
    position:absolute;
    padding:10px;
    margin-top:133px;
    display:none;
    cursor:pointer;
    border-radius:50%;
    font-size:25px;
    z-index:2;
    box-shadow: var(--box-shadow);
}
.arrow-indicators span:last-child i{
    right:0;
    position:absolute;
    padding:10px;
    cursor:pointer;
    margin-top:133px;
    border-radius:50%;
    font-size:25px;
    z-index:2;
    box-shadow: var(--box-shadow);
}
.items_informer{
    font-weight: 700;
    line-height: 30px;
    font-size: 24px;
    margin: 20px;
}
/* ==================== S T A R T      D I S C O U N T S =====================*/
.discount-offer-text {
    font: bold 14px Sans-Serif;
    color: #fff;
    text-align: center;
    text-shadow: rgb(255 255 255 / 50%) 0 1px 0;
    -webkit-transform: rotate(320deg);
    -moz-transform: rotate(320deg);
    -ms-transfrom: rotate(320deg);
    -o-transfrom: rotate(320deg);
    position: relative;
    padding: 7px 0;
    left: -25px;
    top: 6px;
    width: 110px;
    background-color: #ff0000;
}
.discount-offer-displayer {
    position: absolute;
    width: 85px;
    height: 88px;
    overflow: hidden;
    top: -3px;
    left: -3px;
}
@media (max-width:600px){
    .arrow-indicators{
        display:none
    }
}
.topic-info-displayer{
    background: linear-gradient(to left, #3399ff 0%, #ff99cc 97%);
    width: 100%;
    height: 300px;
    top: -47px;
    position: relative;
    margin-bottom: 10px;
}
.topic-info-displayer p{
    text-align: center;
    color: white;
    font-weight: 700;
    position: relative;
    top: 103px;
    line-height: 41px;
}
.username-on-pro{
    text-align: center;
    margin-top: 60px;
    font-size: 20px;
    font-weight:700;
}
.main_rename{
    font-size: 25px;
    text-shadow: 0px 2px 17px rgb(0 0 0 / 40%), 0px 1px 10px rgb(0 0 0 / 10%), 0px 21px 10px rgb(0 0 0 / 10%);
}
@media (max-width:600px){
    .arrow-indicators{
        display:none
    }
}
.topic-info-displayer{
    background: linear-gradient(to left, #3399ff 0%, #ff99cc 97%);
    width: 100%;
    height: 300px;
    top: -47px;
    position: relative;
    margin-bottom: 10px;
}
.topic-info-displayer p{
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    top: 103px;
    line-height: 41px;
}
.footer-top-details p:first-child{
    font-weight: 700;
}
/* ================== FOR TABLET DEVICES =================================>*/
@media (max-width:768px){
.footer-top-details {
    flex-basis: 30%;
   }
}
/*================== FOR RANDOMLY SIZED DEVICES ===========================>*/
@media (max-width: 600px){
.footer-top-details {
    flex-basis: 40%;
   }
}
/*================== FOR RANDOMLY SIZED DEVICES ===========================>*/
@media (max-width: 400px){
.footer-top-details {
    flex-basis: 50%;
   }
}
/*================== FOR RANDOMLY SIZED DEVICES ===========================>*/
@media (max-width: 300px){
.footer-top-details {
    flex-basis: 100%;
   }
}
.m-e-box-1-responsive-image{
    margin:auto;
    display:block;
    height:auto;
    width:100%
}
.price-style-in-order{
    position: relative;
    font-weight:700;
    color: var(--main-link);
    text-decoration:none;
    margin: 15px 10px;
    font-size: 23px;
}
.price-style-in-order::after{
    content: attr(title);
    position: absolute;
    top: -27px;
    left: 0;
    font-size: 16px;
    font-style: italic;
    color: #736e78;
    text-decoration-line: line-through;
    text-decoration-thickness: 0.3px;
    text-decoration-color: #736e78;
}
@media screen and (max-width:740px){
.price-style-in-order{
     margin: 15px 30px;
    }
}
@media (max-width: 400px){
.review-stars{
    display: block;
  }
}
.price-and-button-styler{
    display: flex;
    background-color: var(--unique-bg-color);
    align-items: center;
    justify-content: center;
    padding: 10px;
}
@media (max-width:300px){
.price-and-button-styler{
    display:  block;
    margin: 27px auto 0;
    padding: 20px;
  }
}
/*////////////////////////////// FOR RATING CSS//////////////////////////////*/
.star-count{
    bottom: 2px;
    position: relative;
}
.stars-data{
    text-align: center;
}
.stars-data i {
    margin-left: -2px;
    color: var(--stars-color);
}
.review-stars i{
    color: var(--stars-color);
    margin: -2px;
}
#rating-update i{
       color: var(--stars-color) !important; 
}
.rating-feedback-container, .main-hidden-box-container, #loggedout-container{
    display: none;
    position: fixed;
    z-index: 999;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    height: auto;
    border: none;
    border-radius: var(--border-radius-size);
    background: var(--boxes-bg);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
@media (max-width: 750px){
    .rating-feedback-container, .main-hidden-box-container, #loggedout-container{
        width: 70%;
    }
}
@media (max-width: 450px){
    .rating-feedback-container, .main-hidden-box-container, #loggedout-container{
        width: 85%;
    }
}
.feedback-form-controller{
    padding: 40px 5px;
    background: white;
    border-radius: var(--border-radius-size);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
}
.feedback-form-controller:focus{
        outline:none;
}
#result-success{
     background-color: lightgreen;
     color:green;
     border-radius:16px;
     padding:5px;
     margin-top:5px;
     width:75%;
     margin-bottom:5px;
     display:none;
}
.error-messages-to-all i{
    color: red;
}
.fa-star,.fa-star-half-empty,.fa-star-o{
    cursor: pointer;
    font-size: 17px;
}
.rating-displayer-box{
    padding: 10px;
    width: 98%;
    border-radius: var(--border-radius-size);
    display: flex;
    margin: auto;
    height: auto;
}
.rating-displayer-1-box{
    width: 30%;
}
.total-rating-displyer-1{
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    font-size: 30px;
    border: 3px solid #ffd65e;
}
.total-rating-displyer-2-1{
    margin: 7px 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.total-rating-displyer-2-2,.total-rating-displyer-2-3{
    margin: 5px;
    display: block; 
    font-size: 14px;
    text-align: center;
}
.rating-displayer-2-box{
    width: 50%;
}
.rating-5{
    display: block;
    width: 80%;
    padding: 10px;
    margin: 5px;
    box-shadow: inset 0 0 3px black;
    border: none;
}
.rating-displayer-3-box{
    width: 20%;
    font-weight: 300;
    text-align: center;
}
.rating-displayer-4-box{
    width: 30%;
    border-left: 0.5px solid #edf0f5;
    font-weight: 300;
    text-align: center; 
}
 .rating-score{
    display: block;
}
@media (max-width: 440px){
.rating-displayer-box{
    padding: 10px;
    width: 98%;
    border-radius: var(--border-radius-size);
    display: block;
    position: relative;
    }
.rating-displayer-1-box{
    margin: 5px auto;
    width: 90%;
    display: block;
}
 .rating-displayer-4-box{
    border-left: none;
}
.rating-5{
    width: 70%;
} 
}
@media (max-width: 319px){
     .rating-displayer-2-box, .rating-displayer-3-box, .rating-displayer-4-box{
        font-size: 10px;
    }
}
.whole-chunk-rating-counter{
    display: flex;
    width: 70%;
    margin: auto;
    align-items: center;
    justify-content: center;
}
.feeback-displayer-box{
    padding: 10px;
    background-color: var(--unique-bg-color);
    border-radius: var(--border-radius-size);
    margin: 10px;
}
.feeback-displayer-box img{
    display: inline-block;
    position: relative;
}
#ago-time-displayer{
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}
.load-more-button{
    color: #0080ff;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    margin: 10px auto;
    border-radius: 25px;
    border: none;
    display: flex;
    box-shadow:var(--main-box-shadow);
}
.load-more-button i{
    color: #0080ff;
}
.load-more-button:focus{
   outline: none;
}
.username-on-feedback{
    font-weight: bold;
    color: #0080ff;
    text-decoration: none;
}
.rate-option i {
  float: right;
  color: #ffd700;
  padding: 10px 5px;
}
.rate-option i:hover,
.rating-update i:hover ~ i {
  color: #ffa534;
}
.rate-option {
  display: inline-block;
  list-style: none;
}
.box-of-rating{
    text-align: center;
	width: 70%;
	margin: 20px auto;
    border-radius: var(--border-radius-size);
    box-shadow:var(--main-box-shadow);
}
.main-form-controller{
    width: 40%;
    margin: 10px auto;
    padding: 15px;
    border-radius: var(--border-radius-size);
    border: none;
    background-color: var(--boxes-bg);
}
@media (max-width:900px){
    .main-form-controller{
        width:60%
    }
}
@media (max-width:500px){
    .main-form-controller{
        width: 80%;
    }
}
.required-field{
    color:red;
    font-size: 24px
}
 #whole-page-loader{
     width: 50px;
     position: absolute;
     display: none;
}
 .recommedation-img{
     max-width: 100%;
     height: auto;
     border-top-left-radius: 15px;
     border-top-right-radius: 15px;
}
.red-code-editor, .green-code-editor, .blue-code-editor, .purple-code-editor, .yellow-code-editor{
    padding: 1px 4px;
    border-radius: 4px;
}
.red-code-editor{
    color: #e94545;
    background-color: #f7e7eb;
}
.green-code-editor{
    color: #4dbda5;
    background-color: var(--green-code-editor);
}
.blue-code-editor{
    color: #35abff;
    background-color: #d9f2f7;
}
.purple-code-editor{
    color: #8500ff;
    background-color: #ede3f3;
}
.yellow-code-editor{
    color: #e6db74;
    background: #272822;
}
.checkmark-icon:after{
    content: '✔';
    position: relative;
    border: 1px solid #badfda;
    background: #c9e5e3;
    border-radius: 50%;
    color: #18877f;
    font-size: 15px;
    padding: 1px 3px;
    box-shadow: inset 0 1px 3px #24242459;
    }
.informer-container{
    display: none;
    position: fixed;
    z-index: 999;
    left: 25%;
    width: 50%;
    top: 15%;
    padding: 10px;
    height: auto;
    border: none;
    border-radius: var(--border-radius-size);
    background-color: var(--boxes-bg);
    box-shadow: var(--super-box-shadow);
}
@media (max-width: 750px){
.informer-container{
    width: 70%;
    left: 15%;
    }
}
@media (max-width: 450px){
.informer-container{
    width: 85%;
    left: 5%;
    right: 5%;
    }
}
.unique_select_form {
    padding: 10px;
    margin: 10px auto;
    display: inline-block;
    font-family: inherit;
    border-radius: 25px;
    width: 130px;
    cursor: pointer;
    border: var(--main-border);
    color: var(--main-font-color);
    background: var(--select-background-color);
}
.unique_select_form:focus {
    border: none;
}
.required-field{
    color:red;
    font-size: 24px
}
/* ======================= THREE BOXES STYLE ================================>*/
.main_three_boxes{
    width:96%;
    line-height:30px;
    display:flex;
    margin:10px auto;
    justify-content:center
}
.divided_box p{
    margin: 12px 15px;
}
.main_three_boxes p:last-child{
    padding: 0 0px 20px;
}
.divided_box{
    width:32%;
    margin:10px auto;
    border-radius: var(--border-radius-size);
    background-color: var(--boxes-bg);
}
@media screen and (max-width:800px){
    .main_three_boxes{
        display:block
    }
    .divided_box{
        width:60%
    }
}
@media screen and (max-width:600px){
.divided_box{
        width:90%
    }
}
.divided_box .divided_box_topic, .colored_topic{
    background: var(--topic-bg-color);
    color: var(--topic-color);
    padding: 5px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;  
    font-size: 20px;
}
.colored_topic i{
    color: var(--topic-color);
    margin-right: 10px;
}
.circle_icon, #circle_icon {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: var(--main-border);
    padding: 8px;
    color: inherit;
    text-align: center;
}
.circle_image, .normal_item_img {
    width: 30px;
    height: 30px;
    border: var(--main-border);
    padding: 5px;
    vertical-align: middle;
}
.circle_image {
    border-radius: 50%;
    margin-right: 15px;
}
.main-profile-styler{
    text-align: center;
    margin-top: 60px;
}
.success_handler {
    background-color: lightgreen;
    color: green;
}
.error_handler{
    background-color: #fcc;
    color: red;
}
.error_handler, .success_handler {
    border-radius: 5px;
    padding: 5px 10px;
    position: relative;
    z-index: 9999999999;
    width: 75%;
    margin: 10px auto;
    display: none;
}
.neutral_handler {
    background-color: #b2b7c2;
    border-radius: 5px;
    padding: 5px 10px;
    position: fixed;
    z-index: 9999999999;
    width: 75%;
    margin: auto;
    bottom: 10%;
    display: none;
    left: 12.5%;
    animation: response_handler 0.2s ease-in-out;
}
@keyframes response_handler {
  0% { 
      bottom: 0%; 
  }15% { 
      bottom: 2%; 
  }30% { 
      bottom: 4%; 
  }45% { 
      bottom: 6%; 
  }60% { 
      bottom: 8%; 
  }75% { 
      bottom: 10%; 
  }90% { 
      bottom: 12%; 
  }100% { 
      bottom: 15%; 
  }
}
.new-loader-icon {
    display: none;
    text-align: center;
    margin: auto;
}
.clear-overview {
    height: 160px;
    width: 100%;
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    position: relative;
    z-index: 2;
}
.user-profile-image-con {
    width: 100px;
    height: 100px;
    position: absolute;
    display: block;
    bottom: -50px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    background-image: linear-gradient(120deg, #e0c3fc -41%, #8ec5fc 100%);
}

/* ================= FOR COMMMENTING SYSTEM ==================================*/
.whole-comment-data{
    margin: 10px auto;
    font-size: 15px;
    border-radius:15px;
    background-color: var(--boxes-bg);
}
.comment-form, .reply-form, .edit-form{
    padding: 10px 10px 15px;
    border-radius: var(--border-radius-size);
}
.whole-comment-data textarea{
    border:none;
    background-color:var(--unique-bg-color);
}
.reply-data{
    position: relative;
    margin-left: 30%;
}
.username-on-comment{
    font-weight: bold;
    margin-left: 10px;
    color: #0080ff;
}
.reply-button{
    margin-top: -22px;
    cursor: pointer;
   /* float: right;*/
    font-size: 14px;
}
.username-and-time-displayer{
    display: inline-block;
}
.img-profile-on-comment{
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.edit-delete-reply-button{
    display: block;
    text-align: right;
}
.report-flag{
    float: right;
    cursor:pointer;
}
#feedback-message-displayer{
  word-break: break-word;
}
.feedback_user_profile{
    width: 45px;
    height: 45px;
    border-radius:50%;
    margin-bottom: -20px;
    display: inline-block;
    position: relative;
}
.hide-cookie-notice{
    text-align:left;
    background: #d2e7e7;
    padding:20px;
    position:fixed;
    z-index:999999999;
    border-radius:15px;
    width:80%;
    left:0;
    right:0;
    margin:auto;
    bottom:10%;
    animation:3s slide-to-right;
    box-shadow:rgba(0,0,0,.4) 0 30px 90px
}
@keyframes slide-to-right{
    0%{
        transform:translateX(-40%)
    }
    40%{
        transform:translateX(0)
    }
}
.hide-cookie-notice:first-child{
    font-size:24px;
    margin-right:5px;
    font-weight: bold;
}
.reader {
    cursor: pointer;
}
.panel.show {
    display: block;
    margin-left: 20px;
}
.panel {
    display: none;
}
.read-noti-sms, .unread-noti-sms{
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 5px 0px, rgb(0 0 0 / 10%) 0px 0px 1px 0px;
    padding: 5px 10px;
    border-radius: 5px;
}
.unread-noti-sms{
    background: #e9f1ff;
}
.main_login_dashboard{
    width: 96%;
    margin: -16px auto auto;
}
.sign-in-with-google-button{
    width: 70%;
    display: block;
    margin: auto;
    border-radius: 5px;
}
@media (min-width: 600px){
.main_login_dashboard{
    width: 70%;
  }
}
@media (min-width: 900px){
.sign-in-with-google-button, .main_login_dashboard{
    width: 50%;
  }
}
@media (min-width: 1200px){
.sign-in-with-google-button, .main_login_dashboard{
    width: 40%;
  }
}
@media (min-width: 1500px){
.sign-in-with-google-button, .main_login_dashboard{
    width: 300px;
  }
}
.upload_button{
    display: none;
    margin-bottom: -10px;
    right: 0;
    left: 0;
    bottom: -53%;
    position: absolute;
    max-width: 128px;
}/*
.comments-and-button-displayer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}*/
.slider-container {
  position: relative;
  height: 150px;
  width: 100%;
  max-width: 1000px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
.slider-scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(260px * 6);
  transition: all 1s ease;
}
.slider-item {
  width: 220px;
  height: 110px;
  display: inline-block;
  margin: 5px;
  position: relative;
}
.slider-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px;
  max-height: 100px;
}
/* ============ TO THE FIRST IMAGE OVERVIEW ================================= */
.img-slider{
  margin:0 auto;
  width: 100%;
  overflow:hidden;
}
.img-slides{
  overflow:hidden;
  animation-name:slideOverview;
  animation-duration:1s;
  display:none;
}
@keyframes slideOverview{
  from{
    opacity:0.4;
  }
  to{
    opacity:1;
  }
}
.img-slides img{
    width: 100%;
}
.copied {
    margin-left: 30%;
    background-color: var(--important-background-color);
    display: none;
    position: absolute;
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--main-box-shadow);
    z-index: 9999;
}
/*THEME SLIDER START*/
.theme-switch-wrapper {
  display: flex !important;
  align-items: center;
}
@media (max-width: 350px){
.theme-switch-wrapper {
    display: none !important;
    }
}
.theme-switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 43px;
}
.theme-switch input {
  display:none;
}
.slider {
  background: #C8CEEA;
  box-shadow: inset 9.91px 9.91px 15px #b6bbd5, inset -9.91px -9.91px 15px #7e8087;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}
.slider:before {
    background-color: var(--main-theme-color);
    bottom: 3px;
    content: "";
    height: 18px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 18px;
    z-index: 99;
}
input:checked + .slider {
  background-color: var(--main-theme-color);
}
input:checked + .slider:before {
  transform: translateX(16px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.theme-checkbox i{
    position:relative;
    bottom: 2px;
    right: -24px;
}
/*=========   DOTS AND ARROWS IMAGES CONTROLLER   =======*/
.dot{
    padding: 1px;
}
.active{
    background: var(--main-theme-color);
}
.right-drop-down{
    text-align: right;
    margin-right: 10%;
}
.dots-con{
    text-align: center;
}
.dots-con img{
    width: 50px;
    height: auto;
    border: var(--main-border);
    cursor: pointer;
}
.dots-con img:hover{
    opacity: .7;
}
 .box-1-responsive-image{
     display: none;
}
.image_bx_1{
    display:block;
}
.images_box{
    height: 400px;
}
.images_data{
    overflow: auto;
    background: var(--background-color);
    margin: auto;
    width: 100%;
    height: 100%;
    position: relative;
    justify-content: center;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -webkit-flex-wrap: wrap;
    align-items: flex-start;
    object-fit: contain;
}
.images_data img{
    margin: 3px;
    display: block;
    width: auto;
    max-width: 20%;
    height: auto;
    border-radius: 5px;
    max-height: 300px;
    cursor: pointer;
}
.images_data .dip-class-dif{
    transition: background-color 3s;
    background-color: var(--boxes-bg);
    display:table;
    position:relative;
    border-radius:10px;
    margin:5px
}
.icon_to_close{
    position: absolute;
    cursor: pointer;
    right: 6px;
    top: -28px;
    color: var(--nav-footer-color);
    z-index: 9999;
    font-size: 24px;
    background: #fe8508;
    padding: 1px 8px;
    border-radius: 5px;
}
/*.display_fetched_images{
    width: 40%;
}
@media only screen and (min-width:1300px){
    .display_fetched_images{
        flex-basis:15%
    }
}
@media only screen and (max-width:1300px){
    .display_fetched_images{
        flex-basis:15%
    }
}
@media only screen and (max-width:1100px){
    .display_fetched_images{
        flex-basis:18%
    }
}
@media only screen and (max-width:900px){
    .display_fetched_images{
        flex-basis:23%
    }
}
@media only screen and (max-width:750px){
    .display_fetched_images{
        flex-basis:31%
    }
}
@media only screen and (max-width:500px){
    .display_fetched_images{
        flex-basis:46%
    }
}
@media only screen and (max-width:319px){
    .images_data .display_fetched_images{
        float:left;
        flex-basis:90%;
        margin-right:2.564102564102564%;
        width:48.717948717948715%
    }
    .images_data .display_fetched_images:nth-child(2n+0){
        margin-right:0
    }
}*/
.social-media {
    margin: -8px 0 0 0 !important;
}
.social-media {
    padding: 8px;
    background-color: var(--unique-bg-color);
    margin: -12px -15px;
    border-bottom-left-radius: var(--border-radius-size);
    border-bottom-right-radius: var(--border-radius-size);
    border-top: 0.5px solid #ccc;
}
.social-media i{
    font-size: 23px;
}
.load_more_imgs{
    right: 10%;
    top: 10px;
    width: 35px;
    height: 35px;
    position: relative;
    display: none;
}
.ajax-loader{
    width: 5%;
    margin: auto;
    top: 50%; 
    left: 50%;
    right: 50%;
    bottom: 50%;
    position: absolute;
    z-index: 9999;
    display: none;
}
/* UPLOAD IMAGE  */
.upload_progress {
    width: 100%;
    height: 11px;
    margin: 0 auto;
    position: absolute;
    display: none;
    bottom: 1px;
}
.progress-bar {
  margin: 0 0 10px;
  overflow: hidden;
}
.progress-content-outter {
  height: 12px;
  background-color: #bfc3d6;
}
.progress-content {
  height: 21px;
  background-color: var(--main-font-color);
  width: 0%; /* Initial value */
}
.pro-quantity-left-warning{
    color:#ff4d4d;
    text-align:center;
    padding-bottom:10px
}
.flex_buttons_cont{
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: space-between;
}
.flex_normal_button{
    text-align: center;
    /*margin: 0 auto 20px;*/
    margin: auto -80%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width:500px){
.flex_normal_button{;
    display: block;
   }
}
.image_adapter{
    background-color: var(--main-theme-color);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    color: var(--topic-color);
    cursor: pointer;
}
/*====================== FOR THE UPLOADING PROGRESS BAR =====================>*/
.progress_container {
    background: #0080ff;
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    margin: 10px auto;
    width: 50px;
    line-height: 50px;
    text-align: center;
    display: none;
}
/*==================================== TABLE STYLER ==========================*/
.table_controller{
    overflow-y: auto;
    border-radius: 5px;
    margin: 5px;
}
.design_table {
    font-size: 13px;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    text-align: left;
    background-color: var(--unique-bg-color);
}
.design_table td, .design_table th{
    padding: 8px;
}
.design_table td, .design_table th{
    border-right: var(--main-border);
}
.design_table th {
    color: var(--topic-color);
    background-color: var(--topic-bg-color);
}
.design_table tr:nth-child(even) {
    background: var(--background-color);
}
/*/////////////////////////////// TOOLTIP START   ////////////////////////////*/
[data-tooltip]{
    position:relative;
    z-index:2;
    cursor:pointer
}
[data-tooltip]:before,[data-tooltip]:after{
    visibility:hidden;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity:0;
    pointer-events:none
}
[data-tooltip]:before{
    position:absolute;
    bottom:110%;
    left:50%;
    margin-bottom:5px;
    margin-left:-120px;
    margin-right:15px;
    padding:5px;
    width:160px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    background-color:silver;
    background-color:hsla(0,0%,20%,.9);
    color:#fff;
    content:attr(data-tooltip);
    font-size:12px;
    line-height:1.2
}
[data-tooltip]:after{
    position:absolute;
    bottom:110%;
    left:50%;
    margin-left:-3px;
    width:0;
    margin-right:15px;
    border-top:5px solid #000;
    border-top:5px solid hsla(0,0%,20%,.9);
    border-right:5px solid transparent;
    border-left:5px solid transparent;
    content:" ";
    font-size:0;
    line-height:0
}
[data-tooltip]:hover:before,[data-tooltip]:hover:after{
    visibility:visible;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity:1
}
/*/////////////////////// FILE UPLOAD ////////////////////////////////////////*/
/* [type="file"] {
     color: #878787;
}
 [type="file"]::-webkit-file-upload-button {
     background-color: var(--topic-bg-color);
     border: var(--main-border);
     color: var(--topic-color);     
     border-radius: 4px;
     cursor: pointer;
     font-size: 12px;
     outline: none;
     padding: 10px 25px;
     text-transform: uppercase;
     transition: all 1s ease;
}
 [type="file"]::-webkit-file-upload-button:hover {
     background-color: var(--topic-bg-color);
     border:  var(--main-border);
}*/
@media only screen and (max-width: 600px) {
.responsiveness-controller-o-s-devices{
    display: none;
 }
}
@media (min-width:2000px){
html, body{
    width: 1500px;
    margin: auto;
    }
.nav-bar {
    position: sticky;
   }
}