/* FONTS */
body,
html {
    font-size: 16px;
    font-family: 'Roboto';
    color: #010B19;
}

h4 {
    font-size: 1.25rem;
}

input {
    max-width: 100%;
}


select {
    padding: .2rem .4rem;
}

a:hover,
a:focus {
    color: #49D095;
}

.fSmaller {
    font-size: 0.8rem;
}

/* Colors */
.cGreen,
a {
    color: #1DCC86;
}

.cLightgreen {
    color: #49D095;
}

.cWhite {
    color: #FFF;
}

/* Background */
.bgPrimary {
    background-color: #1DCC86 !important;
}

.bgGrey {
    background: #f8f8f8;
}

.bgWhite {
    background: #FFF;
}

button {
    padding: .5rem 2rem;
    outline: none;
    border: 1px solid;
}

button.btnSmaller {
    padding: .25rem 1rem;
}

.isReq.checkFailed {
    border-color: red;
}

/* Spinner */
.spinner-box {
    width: 150;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
}
.spinner-box img {
    position: absolute;
    z-index: 3;
}
.circle-border {
    width: 75px;
    height: 75px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(29, 204, 134);
    background: linear-gradient(0deg, rgba(244, 244, 244, 0.1) 33%, rgb(29, 204, 134) 100%);
    animation: spin .8s linear 0s infinite;
}

.circle-core {
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    border-radius: 50%;
}
.modal-backdrop.loader
{
    background-color: #FFF !important;
    opacity: 0.9 !important;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

/* Navs */
.secHeader {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Slide Control */
.deleteSlide,
.deleteQuiz {
    color: red;
    cursor: pointer;
}

.slideSwitch {
    cursor: pointer;
}

.SlideContainer-01 .slideControlWrapper,
.slideConts:last-child .slideDown {
    display: none !important;
}

.slideTitle {
    min-width: 320px;
}

/* Cases */
.case {
    display: none;
}

.case.active {
    display: flex;
}


/* Icon Lib Display */
.switchIconImg,
.eBtn {
    background: #FFF;
    border: 1px solid #1DCC86;
    color: #1DCC86;
    padding: .3rem .9rem;
    transition: all ease-out .3s;

}

input#theChaperImg {
    max-width: 140px;
}

#secIconPrev img {
    max-width: 80px;
    max-height: 80px;
}

.eBtn {
    padding: .15rem .6rem;
}

.switchIconImg.active,
.switchIconImg:hover,
.eBtn:hover {
    background: #1DCC86;
    color: #FFF;
    transition: all ease-out .3s;

}

.protJsonAsset>div {
    display: none;
}

.protJsonAsset>div.active,
.chapterAsset {
    display: flex;
    flex-wrap: wrap;
}

.col-6 .protJsonAsset .assetWrapper,
.chapterAsset .assetWrapper {
    width: 100%;
    max-width: 49%;
}

.protJsonAsset {
    height: 440px;
    overflow-y: auto;
    background-color: #FFF;
    border: 1px solid #1DCC86;
    border-radius: 3px;
}

.protJsonAsset img,
.chapterAsset img {
    max-width: 120px;
    max-height: 90px;
}

.assetWrapper {
    position: relative;
    cursor: pointer;
    transition: all .2s ease-out;
}

.assetWrapper:hover {
    transform: scale(1.05);
    transition: all .2s ease-out;

}

.imgWrapper:hover {
    transform: scale(1.01);
    transition: all .2s ease-out;
}

.assetWrapper.active:after {
    content: '\f00c';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #1DCC86;
    font-size: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 3;

}

.iconTitle,
.imgTitle {
    font-size: 0.8rem;
    font-weight: 700;
}

.protJsonAsset::-webkit-scrollbar,
.protJsonImgs::-webkit-scrollbar {
    -webkit-appearance: none;
}

.protJsonAsset::-webkit-scrollbar:vertical,
.protJsonImgs::-webkit-scrollbar:vertical {
    width: 11px;
}

.protJsonAsset::-webkit-scrollbar:horizontal,
.protJsonImgs::-webkit-scrollbar:horizontal {
    height: 11px;
}

.protJsonAsset::-webkit-scrollbar-thumb,
.protJsonImgs::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}


.slideConts .slideWrapper,
.chapterEssentials {
    /* box-shadow: 0 0.1rem 0.3rem rgb(103 110 144 / 30%), 0 0 0 0.1rem rgb(103 110 144 / 5%); */
    background: #f4f4f4;
}


.modalStatus {
    display: none;
}

.modalStatus.active {
    display: block;
}

#ajaxStatus {
    opacity: 1;
}

#ajaxStatus.animate {
    opacity: 0;
    transition: all 2s 1s ease-in;
}



.filetoload {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
}



/* SWITCH ON OFF LIKE PROTABO */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
    margin-bottom: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.switch.active .slider {
    background-color: #1dcc86;
}


.switch.active .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Branchen Checkbox */
.branchenCol label {
    width: 100%;
}

.labelHead {
    margin-bottom: .5rem;
}

.labelHead label {
    margin-bottom: 0;
}

/* TAB CI */
.nav-tabs {
    border-bottom: 0;
    background: transparent;
}

.nav-link.eBtn {
    border: 1px solid #1DCC86;
    border-radius: 0;
    margin-right: 1rem;
}

.nav-link.eBtn.active {
    background-color: #1DCC86;
    border: 1px solid #1DCC86;
    color: #fff;
}

.tCont {
    transition: all .2s ease-out;

}

.tCont.active {
    background-color: #1DCC86;
    color: #FFF;
    transition: all .2s ease-out;
}

.tCont b {
    cursor: pointer;
    display: flex;
    min-height: 3rem;
    position: relative;
    line-height: 1.2;
}

.tCont b:after {
    content: '\f0c8';
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    color: #010B19;
    font-size: 1rem;
    position: absolute;
    top: 0;
    right: 0;
}

.tCont.active b:after {
    content: '\f058';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #FFF;
    font-size: 1rem;
    position: absolute;
    top: 0;
    right: 0;
}

.tCont .kSelect,
.tCont {
    opacity: 0.5;
}


.tCont.active .kSelect,
.bWrapper.active .tCont {
    opacity: 1;
}

/* QUIZ */
.quizContents {
    display: none;
}

.quizContents.active {
    display: block;
    background: #fff;
    background-clip: content-box;
}

.quizMetaConts {
    background: #fff;

}

.qHead {
    margin-bottom: .2rem;
}

.qDivider {
    border-top: 1px solid #ccc;
}

/* WRONG OR RIGHT */
.wrongWrightQsWrap {
    flex-wrap: wrap;
}

.seclectRightCWrap textarea {
    width: 100%;
}

.wrongRightQWrap {
    background: red;
    border-radius: 3px;
    color: #FFF;
    font-size: .75rem;
    font-weight: 700;
}

.wrongRightQWrap.isRight {
    background: #1dcc86;
}

.wrongRightQWrap.isRight .switch.active .slider {
    background-color: #CCC;
}

.wrongRightQWrap .message {
    font-size: 1rem;
    font-weight: 400;
    width: 100%;
}

/* SELECT RIGHT */
.selectRightContainer input,
.selectRightContainer textarea {
    width: 100%;
}

/* FILL BLANK */
.fillBlankQWrap textarea,
.fillBlankQWrap input {
    width: 100%;
}

.fillBlankQWrap .fBfullMessage {
    height: 17.7rem;
    border: 1px solid;
    padding: 1rem;
    cursor: text;
}

.changeBlankWrapper {
    display: none;
}

.changeBlankWrapper.active {
    display: flex;
}

.cAnswerDisp {
    border-bottom: 1px solid #1DCC86;
    color: #1DCC86;
}

.changeBlankRep {
    border: 0;
    text-decoration: underline;
    color: #010B19;
}

.blankReplacement.locked {
    cursor: not-allowed !important;
    pointer-events: none;
    background: green;
    color: #FFF;
    border: 0;
    padding: .5rem;
}


/* SIDENAV PROJSON */
.builderSideNav {
    position: fixed;
    right: 15px;
    top: 30%;
    z-index: 99;
}
.builderSideNav i {
    cursor: pointer;
    font-size: 1.15rem;
    background-color: #fff;
    border: 1px solid #1DCC86;
    color: #1DCC86;
    transition:  all ease-out .3s;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.builderSideNav > div {
    display: flex;
    height: 2.5rem;
    justify-content: flex-end;
    margin-bottom: .5rem;
}
.builderSideNav button {
    font-size: 0.7rem;
    opacity: 0;
    margin-right: .5rem;
    pointer-events: none;
}
.builderSideNav > div:hover button {
    opacity: 1;
    pointer-events: all;
}

.builderSideNav i:hover {
    background-color: #1DCC86;
    color: #FFF;
    transition:  all ease-out .3s; 
}


/* TEMP */

.prevSlides * {
    cursor: not-allowed !important;

}