
/* Card Carousel */
.cc-container{
    /*margin: 0 100px;*/

    transition: 1s;
}
.cc-stepButtons{
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-image: url(/Public/images/nyil-01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}
.cc-btnPrev{
    left: 0;
}
.cc-btnNext{
    right: 0;
    transform: rotate(180deg);
}
.cc-tape{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
}
.cc-item{
border-radius: 1rem;
    transition: 0.6s;
}

.cc-item div, .cc-item img{
    border-radius: 30px;
}
.cc-shadowed{
    filter: brightness(0.6);
    bottom: 0;
    transform: scale(1.0);
}

.cc-focus{
    transform: scale(1.2) translateY(-40px);

    z-index: 22;
    filter: none;
    transition: 0.6s linear;
}

.cc-focus > div, .cc-focus > img {
    box-shadow: 0px 10px 10px #0000007d;

}
.cc-currentDay{
    background-color: #c8cec1;
}
@media (max-width: 500px){
    .cc-item{
        max-width: 500px;
    }
    .db-innerBox{
        width: 100%;
    }
}

.cfc-bottomRow{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 100;
 }
.cfc-listBox {
    display: flex;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
}
.cfc-dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #858585;
    cursor: pointer;
}
.cfc-selectedDot{
    background-color: white;
}

.versionWindow{
    min-height: 500px;
    background-color: white;
    color: black;
    padding: 8px;
}

.loggedUser{
    background-color: yellow;
}

span.specialMenuItem {color: #ad8505;}

.Calculator input::placeholder{
    font-style: italic;
}

.calInput[data-name=daysofactiveInput]{
    font-family: Montserrat, sans-serif;
}

.schoolLvL .cal-title{
    margin-top: 10px;
}

/* Tag */
.tagButton{
    font-size: 10px;
    padding: 2px;
    color: var(--bgLight1);
    border-radius: 4px;
    border: 1px solid white;
    text-decoration: none;
    background-color: var(--bgDark1);
}
.tagButton:hover{
    color:white;
    background-color: black;
}
.tagLink{
    color: inherit;
}
.tagLink:hover{
    color: black;
}
.tagButton[tag-type=author]{
    background-color: #B2A59BFF;
}
.tagButton[tag-type=category]{
    background-color: #B2A59Bcc;
}
.tagButton[tag-type=tag]{
    background-color: #B2A59B99;
}
.tagButton[tag-type=photographer]{
    background-color: #B2A59B66;
}

/* Dashboard */
.db-body{
    padding-right: 0 !important;
    font-family: Montserrat, sans-serif;
    overflow: hidden;
    background-color: #efefef;
}
.db-sidePanel{
    position:relative;
    width: 20%;
    /*min-width: 250px;*/
    height: 100vh;
    background-color: white;
    padding: 0 2rem;
}
.db-mainPanel{
    position: relative;
    width: 100%;
}
.db-topBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--dbColorDark1);
    padding: 15px 1rem;
    color: white;
}
.db-title{
    font-size: 20px;
    font-weight: 700;
}
.db-buttons{
    position: relative;
}
.db-subPanel{
    padding: 5px;
    box-shadow: 0 1px 2px 0 white;
    color: white;
    overflow-y: auto;
}
.db-userPanel{
    height: 150px;
}
.db-mainButton{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
    padding: 10px;
    background-color: white;
    color: #909a95;
    border: none;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.db-mainButton > img{
    width: 20px;
    height: 20px;
}
.db-mainButton:hover{
    color: #a7aeaa;
}
.db-activeButton{
    color: var(--dbColorLight1) !important;
    background-color: white !important;
    pointer-events: none;
}
.db-content{
    height: 100%;
    padding: 1rem;
}
.db-section{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: white;
    color: #384940;
    border-radius: 2rem;
}
.db-innerBox{
    display: flex;
    flex-direction: column;
}
.db-version{
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    font-size: 11px;
}
.db-windowTitle{
    font-size: 25px;
    font-weight: 700;
    padding: 4px;
    padding-left: 0;
    line-height: 120%;
    color: #384940;
}
.db-windowControls{
    display: flex;
    flex-wrap: wrap;
    background-color: #444a3c66;
    border-bottom: 2px solid var(--dbColorDark1);
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 4px 2rem;
    margin: 1rem 0;
}
.db-windowButton{
    background-color: var(--dbColorDark1);
    color: white;
    padding: 5px 10px;
    text-transform: uppercase;
    border: 2px solid var(--dbColorDark1);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.db-windowButton:hover{
    color: var(--dbColorLight1);
    background-color: white;
}
.db-folderTree{
    min-width: 400px;
    padding-top: 1rem;
    padding-right: 1rem;
    height: 80vh;
    overflow: auto;
    border-right: 1px solid var(--dbColorDark1);
    background-color: #444a3c66;
}
.btnHelp
.db-files{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 1rem 0 1rem 1rem;
    width: 100%;
    height: 80vh;
    overflow-y: auto;
}
.db-tagButton{
    font-size: 9px;
    text-transform: uppercase;
    padding: 2px 5px;
    background-color: #e4dfca;
    border: 1px solid orange;
    border-radius: 4px;
}
.db-tagButton:hover{
    background-color: black;
    color: yellow;
}
.db-separator{
    border-top: 1px solid grey;
}
.db-windowContent{
   /* padding-top: 1rem;*/
}
.db-statContent{
    position: relative;
    display: flex;
    gap: 2rem;
    height: 70vh;
}
.db-input{
    border-radius: 8px;
}
.db-iconBtn{
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.db-iconBtn:hover{

}
.db-btnPatch{
    background: url("/Public/icons/patch.svg");
    background-size: contain;
    background-position: center center;
}
.fullVisitors{
    font-size: 20px;
    font-weight: 600;
}
#chart{
    height: 70vh;
    width: 60% !important;
}

/* Download controller */
.dc-container{
    display: flex;
    flex-direction: column;
    background-color: var(--dbColorDark1);
    border-radius: 1rem;
    padding: 0 1rem;
    transition: 0.5s;
}
.dc-titleBar{
    border-bottom: 2px solid white;
    display: flex;
    justify-content: space-between;
}
.dc-title{
    color: white;
    font-size: 20px;
    font-weight: 600;
}
.dc-searchField{
    padding: 5px 10px;
    border: none;
    border-radius: 12px;
    margin-bottom: 4px;
}
.dc-treeContainer{
    width: fit-content;
    min-width: 300px;
    padding-right: 1rem;
    border-right: 1px solid white;
}
/*.dc-fileContainer{*/
/*    padding-left: 1rem;*/
/*    min-width: 500px;*/
/*}*/
.dc-fileContainer{
    display: flex;
    flex-direction: column;
    min-width: 500px;
    padding-left: 1rem;
    gap: 10px;
    transition: 0.5s;
}
.dc-fileBox{
    position: relative;
    display: flex;
    padding: 6px 10px;
    background-color: white;
    border-left: 4px solid transparent;
    border-radius: 6px;
    min-height: 45px;
    color: black;
    transition: 0.3s;
}
.dc-fileBox:hover{
    transform: translateX(10px);
    background-color: #c2c2c2;
}
.dc-typeIcon{
    width: 30px;
    margin-right: 1rem;
}
.dc-infoBox{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.dc-fileName{
    text-decoration: none;
    color: black;
    cursor: pointer;
}
.dc-info{
    display: flex;
    font-size: 12px;
    gap: 2px;
    padding-top: 5px;
    z-index: 2;
}
.dc-date{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.dc-date > span{
    text-align: center;
}
.dc-details{
    display: flex;
    flex-direction: column;
}
.dc-fileLink{
    border-left: 4px solid red;
}

.clearSearchField{
    position: absolute;
    right: 3px;
    top: 3px;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.clearSearchField:hover{
    background-color: grey;
    color: white;
}

.usernameLabel{
    position: absolute;
    top: 40px;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.cke_notifications_area{
    display: none;
}
.cartNotEmpty::after{
    display: block;
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    top: 10px;
    right: 10px;
}

.btn-onStatus{
    background-color: green !important;
    pointer-events: none;
}
.btn-offStatus{
    background-color: #80000b !important;
    pointer-events: none;
}
.btn-onAt{
    background-color: #6bd06b !important;
}
.btn-offAt{
    background-color: #d06b6b !important;
}
.btn-onAt:hover{
    background-color: #298329 !important;
}
.btn-offAt:hover{
    background-color: #832929 !important;
}

.searchResults{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.resultBox{
    position: relative;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.resultBox:hover{
    transform: scale(1.1);
}
.rb-primer{
    background-color: white;
    color: #384940;
    border: 2px solid #384940;
}
.rb-seconder{
    background-color: #384940;
    color: white;
}