@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --main-color: #3c2dff;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.swal2-content,
.swal2-content * {
    color: #333;
}

.model-popup,
body.tc-popup-active .aContainer,
body.modal-open .aContainer {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-backdrop {
    background: rgba(20, 30, 90, .6);
}

.modal-content {
    border: none;
    background: transparent;
}

.card-header {
    font-size: 16px;
    background-color: #383e43;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.card-header a {
    color: white;
}

.modal {
    font-size: 16px;
}

.modal .table {
    font-size: 80%;
}

.dropdown-toggle.no-arrow-icon::after,
.dropdown-toggle.no-arrow-icon::before {
    content: none !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 10px #0002;
}

.cp {
    cursor: pointer;
}

/* #region Loader */

.spinner {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: transparent;
    border: 4px solid #000;
    border-color: #ddd #ddd #ddd transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotateClockWise 1s linear infinite;
    -moz-animation: rotateClockWise 1s linear infinite;
    -o-animation: rotateClockWise 1s linear infinite;
    animation: rotateClockWise 1s linear infinite;
}

.spinner.spinner-dark {
    border-color: #333 #333 #333 transparent;
}

@keyframes rotateClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateAntiClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.full-screen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000a;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.full-screen-loader.active {
    display: flex;
}

.full-screen-loader .spinner {
    width: 100px;
    height: 100px;
    border-width: 7px;
}

/* #endregion Loader */
.align-center {
    display: flex;
    align-items: center;
}

.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pull-away {
    display: flex;
    justify-content: space-between;
}


/* #region Popup window */

.model-popup,
body.tc-popup-active .aContainer,
body.modal-open .aContainer {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

.msgWindow,
.tc-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    background: #000a;
    display: flex;
    z-index: 9999;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -ms-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s
}

.msgWindow .overlay,
.tc-popup .overlay {
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 90, .6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.msgWindow .content .form-control {
    color: #8c8b8b;
}

.msgWindow .content,
.tc-popup .content {
    background: #1c2023;
    color: #333;
    width: 40%;
    overflow: auto;
    max-height: 90vh;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    z-index: 9999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.msgWindow .content.small,
.tc-popup .content.small {
    width: 300px
}

.msgWindow .content .small .btns a,
.tc-popup .content .small .btns a {
    display: inline-block;
    width: auto
}

.msgWindow .content .btns,
.tc-popup .content .btns {
    margin-top: 10px
}

.msgWindow .content .btns button,
.tc-popup .content .btns button {
    white-space: nowrap;
    display: inline-block;
    width: auto;
}

.msgWindow.active,
.tc-popup.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.msgWindow.active .overlay,
.tc-popup.active .overlay {
    opacity: 1
}

.msgWindow.active .content,
.tc-popup.active .content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.msgWindow .content a.s_btn.link,
.tc-popup .content a.s_btn.link {
    white-space: nowrap;
    color: #fff;
    display: inline-block;
    width: auto
}

.msgWindow .content a.s_btn.link:hover,
.tc-popup .content a.s_btn.link:hover {
    color: #fff
}

@media (max-width:550px) {

    .msgWindow .content,
    .tc-popup .content {
        width: 100% !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
}

/* #endregion Popup window */



.tox-tinymce-inline {
    z-index: 9999 !important;
}

.tox.tox-silver-sink.tox-tinymce-aux {
    z-index: 99991 !important;
}

.tinymce-inline-editor {
    min-height: 100px;
    height: auto;
    background: var(--bg-color);
    padding: 8px 10px;
    border: 1px solid var(--border-color-soft);
    font-size: 14px;
}

/* Tinymce Editor */
.tinymce-inline-editor {
    min-height: 100px;
    height: auto;
    background: var(--bg-color);
    padding: 8px 10px;
    border: 1px solid var(--border-color-soft);
    font-size: 14px;
}

.tox-tinymce-inline {
    z-index: 9999 !important;
}

.tox.tox-silver-sink.tox-tinymce-aux {
    z-index: 99991 !important;
}

/* Tinymce Editor */
.s_btn {
    padding: 7px;
    text-align: center;
    background: linear-gradient(200deg, #00a3da, #09c);
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: sans-serif;
    display: block;
    width: 100%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer
}

.s_btn:hover {
    box-shadow: 0 0 15px #0099cc99;
}

.s_btn i {
    padding-right: 5px;
    font-size: 14px
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: 'Poppins', sans-serif !important;
}

.cvContent *:not(i) {
    font-family: unset !important;
}

.link-active {
    background-color: #fff !important;
    color: #333 !important;
}

.custom-sec-field-text {
    font-size: 12px;
    font-weight: normal !important;
    color: #aaa !important;
    margin-bottom: 0px;
    margin-top: 8px;
}