/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); */
*{
    box-sizing: border-box;
}
/* 
        'Fira Sans', sans-serif;
        'Signika Negative', sans-serif;
 */
:root{
    --main-font-size: 14px;
    --main-font-family: 'Fira Sans', sans-serif;
    /* --main-font-family: 'Space Mono', monospace; */
    --main-color: #268b68;
    --main-background: #32b588;
    --main-color-a: #26558b;
    --main-background-td: #e5fce5;
    --main-background-td-hover: #bbffe8;
    --main-background-danger: rgb(163, 32, 32);
    --mainColorDark: #181818;
}
body{
    max-height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: white;
    /* background-image: url('../images/background.png'); */
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    color: var(--main-color);
    font-weight: 700;
}
a{
    text-decoration: none;
    color: #181818;
}
.sMenuLand ul.sMenuLv1{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
}
.sMenuLand .sMenuLv1 li{
    display: inline-block;
}
ul.sMenuLv2{
    padding: 0;
    margin: 0;
}
.sTitleMenu{
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--main-color);
    border-bottom: 1px var(--main-color) dashed;
}
.sMenuLand .sMenuLv2 li{
    display: block;
    padding: 10px 0;
}
.sMenuLand .sMenuLv2 li a{
    text-decoration: none;
    color: var(--mainColorDark);
    text-transform: uppercase;
}

.sBtnOpenMenu {
    background-color: #268b68;
    border-radius: 0 25px 25px 0;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 999;
    height: calc(100% - 40px);
    width: 5px;
    display: flex;
    padding: 0;
    align-items: center;
}
.sBtnCloseMenu{
    background-color: rgb(255, 0, 0);
    border-radius: 0 25px 25px 0;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 999;
    height: calc(100% - 40px);
    width: 5px;
    display: flex;
    padding: 0;
    align-items: center;
}
.title{
    font-weight: bold;
    font-size: 150%;
    color: var(--main-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.s-mt-20{
    margin-top: 20px;
}
input{
    font-family: var(--main-font-family);
    outline: none;
    font-size: var(--main-font-size);
}
input[type="file" i] {
    font-family: var(--main-font-family);
}
input:hover{
    transition: 0.5s;
    border-radius: 3px;
}
input:focus{
    transition: 0.2s;
}
table th{
    background-color: var(--main-background);
    color: white;
    border-radius: 2px;
    padding: 3px;
    text-transform: uppercase;
}
table tr td{
    transition: 0.3s;
    border-radius: 2px;
    padding: 3px;
    background-color: var(--main-background-td);
    color: var(--main-color);
}
table tr:hover td{
    background-color: var(--main-background-td-hover);
}
.tools{
    margin-bottom: 5px;
    display: inline-block;
}
.s-btn-re{
    font-family: var(--main-font-family);
    background-color: var(--main-background);
    font-size: var(--main-font-size);
    border-radius: 3px;
    padding: 3px 10px;
    color: white;
    border: 0;
    display: inline-block;
}
.s-btn{
    font-family: var(--main-font-family);
    background-color: var(--main-background);
    font-size: var(--main-font-size);
    border-radius: 3px;
    padding: 3px 10px;
    color: white;
    border: 0;
    display: inline-block;
}
.s-btn-danger{
    font-family: var(--main-font-family);
    background: var(--main-background-danger);
    border-radius: 3px;
    padding: 3px 10px;
    color: white;
    border: 0;
    display: inline-block;
}
.s-btn-success{
    font-family: var(--main-font-family);
    background: rgb(71, 196, 112);
    border-radius: 3px;
    padding: 3px 10px;
    color: white;
    border: 0;
    display: inline-block;
}
.s-btn-main{
    background-color: var(--main-background);
    text-transform: uppercase;
    padding: 20px;
    /* font-size: 30px; */
    font-weight: bold;
    text-align: center;
    margin-top: 100px;
    border-radius: 5px;
}
.s-btn-main a{
    color:white;
}
.s-title{
    text-transform: uppercase;
    font-weight: bold;
    color:  var(--main-color);
}
.fixed-full-screen{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.70);
    padding: 0 150px;
    top: 0;
    left: 0;
    z-index: 9;
}
.land-in-ffs{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.land-in-ffs img{
    max-width: 100%;
    max-height: 100vh;
    display: block;
    margin: 5px auto;
    border-radius: 5px;
    animation: s-fade-in 0.3s;
    box-shadow: 0 0 7px rgb(255, 255, 255);
}
.load-form{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.70);
    padding: 0 150px;
    top: 0;
    left: 0;
    z-index: 99;
}
.land-in-lf{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.land-in-lf img{
    max-width: 100%;
    max-height: 100vh;
    display: block;
    margin: 5px auto;
    border-radius: 5px;
    /* animation: s-fade-in 0.3s; */
}
@keyframes s-fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes s-fade-out{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.s-image{
    width: 20%;
    margin-right: 10px;
}
.s-image img{
    width: 100%;
    display: block;
}
.sDF{display: flex;}
.s-pagination{
    font-weight: bold;
}
.s-pagination a{
    color: white;
    background-color: var(--main-background);
    padding: 7px 15px;
    border-radius: 3px;
    margin: 2px;
}


.s-search-txt{
    padding: 2px 7px;
    display: inline-block;
    border: solid 2px var(--main-background);
}
.s-search-btn{
    font-size: var(--main-font-size);
    background-color: var(--main-background);
    padding: 7px 15px;
    margin-left: -7px;
    color: white;
    display: inline-block;
    border: solid 2px var(--main-background);
}

.s-search-form{
    display: flex;
}
select, option{
    font-size: var(--main-font-size);
}
tr td .lock-1{
    color: red;
}
.lock-0, .lock-1{
    text-align: center;
}
tr .nodata{
    text-align: center;
    padding: 15px;
}
.shin-failed-alert{
    position: fixed;
    bottom: -100%;
    left: 200px;    
    width: calc(100% - 400px);
    padding: 15px;
    background-color: rgb(255, 205, 205);
    border-bottom: solid 4px rgb(179, 13, 13);
    color: rgb(179, 13, 13);
    border-radius: 5px;
    z-index: 9000;
    font-weight: bold;
    text-transform: uppercase;
    animation: faded 5s ease-out;
    box-shadow: 0 0 50px 0 grey;
}
.shin-success-alert{
    position: fixed;
    bottom: -100%;
    left: 200px;    
    width: calc(100% - 400px);
    padding: 15px;
    background-color: rgb(205, 255, 224);
    border-bottom: solid 4px green;
    color: green;
    border-radius: 5px;
    z-index: 9000;
    font-weight: bold;
    text-transform: uppercase;
    animation: faded 5s ease-out;
    box-shadow: 0 0 50px 0 grey;
}
button{
    background: none;
    font-family: var(--main-font-family);
}
.s-danger{
    border-radius: 3px;
    padding: 4px 5px;
    border: none;
    font-size: 90%;
    color: var(--main-background-danger);
}
.s-info{
    border-radius: 3px;
    padding: 0 5px;
    font-size: 90%;
    color: var(--main-background);
}
@keyframes faded{
    0%{
        bottom: -100%;
        left: 200px;
    }
    2%{
        bottom: 50px;
        left: 200px;
    }
    85%{
        bottom: 50px;
        left: 200px;
    }
    100%{
        bottom: -100%;
        left: 200px;
    }
}
.s-center{
    text-align: center;
    margin: 0 auto;
}
.s-bg-white{
    background-color: white;
}

.info-in-alert{
    border-radius: 3px;
    border: solid 1px white;
    color: rgb(255, 255, 255);
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.185);
    z-index: 9000;
    padding: 5px;
}
.add-manager, .form-add{
    flex-basis: 20%;
    /* width: 20%; */
}
.blank_for_ban_ve{
    display: flex;
    align-items: center;
    position: relative;
}
.blank_for_ban_ve button.btn-del-banve{
   padding: 10px 15px;
   flex-basis: 50%;
   transition: linear .2s;
   text-transform: uppercase;
   color: rgb(177, 23, 56);
   font-weight: 700;
   background:  white;
   border-bottom: solid 3px #ffffff00;
   display: block;
}
.blank_for_ban_ve button.btn-del-banve:hover{
   border-bottom: rgb(177, 23, 56) solid 3px;
}
.blank_for_ban_ve a.btn-update-banve{
   padding: 10px 15px;
   border-bottom: solid 3px #ffffff00;
   transition: linear .2s;
   text-transform: uppercase;
   background: white;
   color: var(--main-color);
   font-weight: 700;
   flex-basis: 50%;
   display: block;
}
.blank_for_ban_ve a.btn-update-banve:hover{
   border-bottom: var(--main-color) solid 3px;
}
.ban-ve{
    display: inline-block;
}
.ban-ve a.main{
    margin: 10px 0;
    padding: 5px 15px;
    background: var(--main-color-a);
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    display: block;
}
.blank_for_ban_ve:hover .action_ban_ve{
    height: 100%;
    width: 100%;
}
.action_ban_ve{
    position: absolute;
    top: 100%;
    left: 0;
    height: 0;
    width: 0;
    transition: .18s linear;
    overflow: hidden;
}
.action_ban_ve form{
    display: flex;
    flex-direction: row;
    text-align: center;
}
.ban-ve i.main{
    padding: 6px 7px;
    color: var(--main-color-a);
    border-radius: 4px;
    transition: .3s linear;
}
.ban-ve i.main:hover{
    padding: 6px 7px;
    color: white;
    background-color: var(--main-color-a);
    border-radius: 4px;
    border: solid 1px;
}
.clr{
    clear: both;
}
.form-add .add-manager{
    width: 100%;
}
.sArtical{
    flex-basis: 80%;
    box-shadow: 0 0 5px grey;
    margin: 20px 20px 20px 0;
    border-radius: 10px;
    max-height: calc(100vh - 40px);
    overflow: auto;
}
.sSidebar{
    margin: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px grey;
    max-height: calc(100vh - 40px);
    overflow: auto;
}
.text-bold{
    font-weight: bold;
}
.text-italic{
    font-style: italic;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}

.s-row{
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
}
.sDG1{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}
.justify-content-center{
    justify-content: center;
}

.s-row .s-box-1{
    display: inline-block;
    width: 80px;
}
.s-row .s-box-2{
    display: inline-block;
    width: 180px;
}
.s-row .s-box-3{
    display: inline-block;
    width: 280px;
}
.s-row .s-box-4{
    display: inline-block;
    width: 380px;
}
.s-row .s-box-5{
    display: inline-block;
    width: 480px;
}
.s-row .s-box-6{
    display: inline-block;
    width: 580px;
}
.s-row .s-box-7{
    display: inline-block;
    width: 680px;
}
.s-row .s-box-8{
    display: inline-block;
    width: 780px;
}
.s-row .s-box-9{
    display: inline-block;
    width: 880px;
}
.s-row .s-box-10{
    display: inline-block;
    width: 980px;
}
.s-row .s-box-11{
    display: inline-block;
    width: 1080px;
}
.s-row .s-box-12{
    display: inline-block;
    width: 1180px;
}
.s-m-center{
    margin: 0 auto;
}
.s-phdr{
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}
.bg-dark{
    background-color: rgb(42, 42, 53);
}
.bg-item{
    background-color: black;
}
.bg-layout-item{
    background-color: black;
}
.item{
    border-radius: 3px;
    margin: 10px;
}
.s-p-10{
    padding: 10px;
}
.s-mr-10{
    margin-right: 10px;
}
.s-mb-10{
    margin-bottom: 10px;
}

/* FLOAT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
.sFloatLand{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 10; }
.sFloatBox512{ width: 512px; margin: 0 auto; }
.sFloatBox1180{ width: 1180px; margin: 0 auto; }
.sFloatBoxFullScreen{ width: calc(100% - 40px); position: relative; }
.sFloatTab{ padding: 20px; width: 100%; max-height: 100vh; background: white; border-radius: 10px; overflow: auto; box-shadow: 1px 1px 25px grey; }
.sFloatMenuTab{ padding: 20px; width: 100%; height: calc(100vh - 40px); background: white; border-radius: 10px; overflow: auto; box-shadow: 1px 1px 25px grey; }
/* END FLOAT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */

/* MENU ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
/* FLOAT MENU ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
    .sPopupEffect, 
    .sAddLand, .sAddOnceLand { transform: scale(0); transition: 0.1s linear; }
    .sMenuLand { left: -120%; transition: 0.1s linear;  z-index: 20;}
    .sPopupEffect 
        .sTitle,
    .sAddLand 
        .sTitle
    { font-weight: bold; padding: 10px 20px; background: #eeeeee; }
/* END FLOAT MENU ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */
/* LIST STYLE 1 (Line Of Text) ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
    .sMenuList{ display: grid; grid-gap: 20px; padding: 10px 20px; }
    .sMenuList a{ text-decoration: none; color: #6060c7; }
    .sMenuList i{ width: 20px; text-align: center; margin: 0 10px 0 0 ; }
/* END LIST STYLE 1 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */
/* LIST STYLE 2 (Grid) ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
    .sMenuListGrid{ display: grid; grid-template-columns: repeat(4, 1fr); }
    .sMenuListGrid a{
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        text-decoration: none; padding: 10px 0; color: #6060c7; transition: 0.3s linear;
    }
    .sMenuListGrid a:hover{ background: #dcf0ff; }
    .sMenuListGrid a i{ font-size: 30px; padding: 0 0 10px; }
    .sMenuListGrid a span{ font-size: 14px; }
/* END LIST STYLE 2 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */
.sCloseMenuLandBtn, .sCloseMenuSystemBtn{
    padding: 10px 20px;
    background: #eeeeee;
    text-align: right;
    text-transform: capitalize;
}
.sCloseAddLandBtn{
    background: #eeeeee;
    text-align: center;
    text-transform: uppercase;
    background: var(--DangerColor);
    color: white;
}
/* EFFECT SPAWN TABMENU ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ */
.sOpen{
    transform: scale(1);
}
.sFlyInFromLeft{
    left: 0;
}
/* END EFFECT SPAWN TABMENU ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */
/* END MENU FLOAT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ */

.bottom-2-btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.bottom-3-btn{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.bottom-2-btn .s-btn, .bottom-3-btn .s-btn{
    display: block;
    text-align: center;
    padding: 10px;
}
.sUpdateFileForm label{
    width: 100%;
    padding: 10px 20px;
    margin: 20px 0;
    background: rgb(232, 244, 255);
    display: block;
}
.sUpdateFileForm input[type="file"]{
    display: none;
}

.sToolOneColumn form{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}
.sToolOneColumn input, .sToolOneColumn button, .sToolOneColumn select{
    display: block;
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: solid 1px var(--main-color);
    font-family: var(--main-font);
}
.sFloatTab .title{
    margin-bottom: 20px;
}
.s-menu-list{
   padding: 10px;
   font-weight: bold;
   position: relative;
   transition: .1s linear;
   z-index: 2!important;
}
.s-menu-list:hover{
   background-color: var(--main-background);
   color: white;
}
.sAuth .sFloatTab{
    padding: 30px 20px;
}

.sAuth form.sFormOneColumn input, .sAuth form select, .sAuth form button{
    padding: 10px;
    font-family: var(--main-font);
    border-bottom: solid 1px var(--main-background);
}
.sLoginForm form{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}
.sLoginForm input, .sLoginForm form button{
    width: 100%;
    padding: 10px;
    border: solid 1px #ccc;
    border-radius: 4px;
}

.sUpdateForm label{
    padding: 5px 0;
    background: unset;
    font-weight: 700;
    margin: 5px 0;
    color:rgb(42, 42, 53);
    display: block;
}
.sUpdateForm input, .sUpdateForm select{
    padding: 10px;
    width: 100%;
    /* font-weight: 700; */
    color:rgb(42, 42, 53);
    border: solid 1px #d6d6d6;
    margin: 0;
}
.quote{
    border: dashed 1px;
    border-left: solid 3px;
    padding: 10px;
}
.sAddBtn{
    margin: 0 10px;
    padding: 5px 10px;
    background: var(--main-background);
    color: white;
    border-radius: 4px;
    font-size: var(--main-font-size);
}

.sTool{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sTool .sSearch{
    display: flex;
}

.sPagination a{
    padding: 10px 15px;
    border-radius: 4px;
    background: var(--main-background);
    color: white;
}

.sDB{
    display: block;
}
.sDN{
    display: none;
}
.h-none{
    height: 0;
    overflow: hidden;
}
input, select, button{
    border: none;
    outline: none;
}
::-webkit-scrollbar {
    display: none;
}
a, button, input[type="submit"]{
    cursor: pointer;
}

.z-inherit, .select-z-inherit .select2-container{
    z-index: inherit;
}

.sub-title{
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--main-background);
    color: white;
    margin-left: 20px;
}

/* SLIDE SHOW GALLERY PRODUCT IMAGE ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬Å“ */
.close-slide-product-image{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 20px;
    border-radius: 4px;
    background: #00000060;
    color: white;
}
.slideshow-container {
    width: 100%; 
    height: 100%;
    background: white; 
    position: relative;
}
.mySlides {
    width: 100%;
    height: calc(100vh - 40px); 
    background: white; 
    border-radius: 10px; 
    overflow: auto; 
    box-shadow: 1px 1px 25px grey; 
    display: none;
}
.mySlides img{
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    background-color: #00000060;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
.sSliderTool{
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
}
.sSliderTool i{
    padding: 5px 15px;
    background-color: grey;
    color: white;
    border-radius: 4px;
    margin-top: 10px;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.pointToThisImage{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.336);
    overflow: auto;
}
.pointToThisImage img{
    display: block;
    max-width: 100px;
    max-height: 50px;
    padding: 5px;
}
.no-image{
    color: var(--main-color);
    text-align: center;
    margin-top: 20px;
}
.no-design{
    padding: 10px;
    margin: 10px 0;
    text-align: center  ;
    background-color: rgb(243, 243, 243);
}