/* ===== Live Chat ===== */
body.chatOn .drawer[data-drawer="liveChat"] {
    transform: translateX(0);
}

#liveChatToggle {
    display: flex;
    width: fit-content;
    align-items: center;
    background-color: var(--success);
}

#liveChatToggle>span.lottie {
    width: 60px;
    display: flex;
    line-height: 0;
    margin-top: -6px;
    margin-bottom: -4px;
    margin-left: -20px;
}

#liveChatToggle:hover {
    background-color: var(--successHover) !important;
    border-color: var(--successHover) !important;
}

body.drawerOn {
    overflow: hidden;
    padding-right: 8px;
}

.drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: 25%;
    max-width: 480px;
    height: 100vh;
    z-index: 60;
    background-color: #01142b;
    border-top-left-radius: 45px;
    overflow: hidden;
    transition: .2s;
    transform: translateX(480px);
}

.drawer.on {
    transform: translateX(0);
    box-shadow: -70px 0px 90px -70px var(--primaryColorHover);
}


#liveChat>.box>* {
    position: relative;
    z-index: 5;
}

#liveChat>.box {
    background-color: var(--primaryColor);
    display: flex;
    flex-flow: column;
    height: 100%;
    margin-top: 0;
    border-top-left-radius: 45px;
    position: relative;
}

#liveChat>.box:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;

    background-image: url(../img/chatPattern.png);
    background-repeat: repeat;
    z-index: 0;
    background-size: 100%;
    opacity: .2;
    filter: invert(1);
}

#liveChat .chatHead {
    display: flex;
    color: White;
    width: 100%;
    height: fit-content;
    gap: 10px;
    padding: 0px 25px;
    padding-right: 0px;
    align-items: center;
}

#liveChat .chatHead .backToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

#liveChat .chatHead .backToggle i {
    display: inline-block;
    transform: rotate(180deg);
    padding: 10px;
    border-radius: 100%;
    transition: .2s;
    cursor: pointer;
}

#liveChat .chatHead .backToggle:hover i {
    background-color: rgba(255, 255, 255, .2);
}

#liveChat .chatHead .tasker {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 100%;
}

#liveChat .chatHead .tasker .visual {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    height: 46px;
    position: relative;
}

#liveChat .chatHead .tasker .nameContent {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

#liveChat .chatHead .tasker .nameContent .name {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
}

#liveChat .chatHead .tasker .state {
    font-weight: 500;
    opacity: .4;
    font-size: 12px;
    line-height: 12px;
}

#liveChat .chatHead .actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    background-color: white;
    border-bottom-left-radius: 45px;
    padding: 20px 30px;
    padding-right: 20px;
    position: relative;
}

#liveChat .chatHead .actions:before {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    z-index: 15;
    color: white;
    font-size: 32px;
    transform: rotate(90deg);
    left: calc(1px - 33px);
    aspect-ratio: 1 / 1;
    line-height: 31px;
    top: 0;
}

#liveChat .chatHead .actions:after {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    z-index: 15;
    color: white;
    font-size: 40px;
    transform: rotate(90deg);
    bottom: calc(0px - 40px);
    aspect-ratio: 1 / 1;
    line-height: 40px;
    right: -1px;
}

#liveChat .chatHead .actions ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

#liveChat .chatHead .actions ul a {
    display: inline-block;
    color: #466277;
    border-radius: 100%;
    background-color: #e9edf0;
    transition: .2s;
}

#liveChat .chatHead .actions ul a:hover,
#liveChat .chatHead .actions ul a.active {
    color: white;
    background-color: var(--primaryColor);
}

#liveChat .chatHead .actions ul a i {
    display: inline-flex;
    font-size: 18px;
    padding: 10px;
    aspect-ratio: 1 / 1;
    line-height: 18px;
    align-items: center;
}

#liveChat .tasker[data-state="online"] .state .offline {
    display: none;
}

#liveChat .tasker[data-state="offline"] .state .online {
    display: none;
}

#liveChat .tasker[data-state="online"] .visual::before {
    content: "";
    background-color: #89db36;
    border: solid 5px var(--primaryColor);
    position: absolute;
    z-index: 10;
    right: -5px;
    top: -5px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    width: 19px;
    height: 19px;
    animation: pulseSuccess 2s infinite;

}

#liveChat .tasker[data-state="offline"] .visual::before {
    content: "";
    background-color: #f72e2e;
    border: solid 5px var(--primaryColor);
    position: absolute;
    z-index: 10;
    right: -5px;
    top: -5px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    width: 19px;
    height: 19px;
    animation: pulseDanger 2s infinite;
}

/**/
#liveChat .chatBox {
    padding: 25px;
    padding-top: 0px;
    margin-top: 25px;
    margin-bottom: 25px;
    overflow-y: auto;
}

#liveChat .chatBox::-webkit-scrollbar {
    width: 24px;
    padding: 15px 0px;
}

#liveChat .chatBox::-webkit-scrollbar-thumb {
    background-color: white !important;
    border-radius: 60px;
    border: 8px solid transparent;
    background-clip: content-box;
    transform: translate(10px, 10px);
}

#liveChat .chatBox .chatBody li span.highlight {
    background-color: yellow;
    color: #222222 !important;
    border-radius: 3px;
}

#liveChat .chatBox .chatBody li.input-li {
    width: auto;
    max-width: none;
    padding: 0;
    border-radius: 0px;
    margin: 0 -25px;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
    height: 0;
    overflow-y: clip;
    padding-bottom: 0px;
    border-bottom: 0px solid rgba(255, 255, 255, .07);
    margin-bottom: -25px;
    transition: .2s;
}

#liveChat .chatBox .chatBody li.input-li.expanded {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 0px;
    height: 70px;
    position: sticky;
    top: 0;
}

#liveChat .chatBox .chatBody li.input-li.expanded:before {
    content: "";
    width: 100%;
    height: calc(100% + 15px);
    position: absolute;
    left: 0;
    top: -15px;
    background-color: var(--primaryColor);
    z-index: -1;
}

#liveChat .chatBox .chatBody li.input-li.expanded:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/chatPattern.png);
    background-repeat: repeat;
    z-index: -1;
    background-size: 100%;
    opacity: .05;
    filter: invert(1);
}

#liveChat .chatBox .chatBody li.input-li input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 60px;
    color: rgba(0, 0, 0, 0.7);
    outline: none;
    border: none;
}


#liveChat .chatBox>ul {
    display: flex;
    flex-flow: column;
    gap: 25px;
}

#liveChat .chatBox>ul li {
    padding: 20px 30px;
    border-radius: 35px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    max-width: 90%;
    width: fit-content;
}

#liveChat .chatBox>ul li.userText {
    background-color: rgb(21 79 112 / 57%);
    color: #d7edfa;
    border-bottom-right-radius: 5px;
    margin-left: auto;
}

#liveChat .chatBox>ul li.userText.loadBubble {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 50px;
    width: 74px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

#liveChat .chatBox>ul li.userText.loadBubble .lottie {
    width: 100%;
    transform: scale(3.125);
    transform-origin: top left;
    position: absolute;
    top: -180%;
    left: -104%;
    filter: invert(1);
}

#liveChat .chatBox>ul li.userText.loadBubble.removing {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

#liveChat .chatBox>ul li.userText.loadBubble.show {
    opacity: 1;
    transform: translateY(0);
}


#liveChat .chatBox>ul li.taskerText {
    background-color: rgb(233 237 240);
    color: #01141fba;
    border-top-left-radius: 5px;
    font-weight: 500;
}

/**/

#liveChat .typeArea {
    padding: 35px 25px;
    display: flex;
    flex-flow: row;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

#liveChat .typeArea>.inputBox {
    margin-bottom: 0px;
}

#liveChat .typeArea>.inputBox:first-child {
    width: 100%;
}

#liveChat .typeArea>.inputBox textarea {
    border-radius: 35px;
    padding: 20px 20px !important;
    background-color: white !important;
    width: 100%;
    height: 60px;
    resize: none;
    box-sizing: border-box;
    background-clip: padding-box;
    scrollbar-gutter: stable both-edges;
    padding-right: 40px !important;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0px;
    font-family: var(--font);
    color: rgba(0, 0, 0, 0.7);
    overflow: hidden;

}

#liveChat .typeArea>.inputBox textarea::-webkit-scrollbar {
    width: 18px;
    padding: 15px 0px;
}

#liveChat .typeArea>.inputBox textarea::-webkit-scrollbar-thumb {
    background-color: var(--primaryColor);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
    transform: translate(10px, 10px);
}

#liveChat .inputBox.full textarea {
    box-shadow: none !important;
}

#liveChat .typeArea>.inputBox:nth-child(2) button {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    border: none;
    box-shadow: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--primaryColor);
    background-color: white;
    cursor: pointer;
}

#liveChat .typeArea>.inputBox:nth-child(2) button>i {
    transition: .2s;
}

#liveChat .typeArea>.inputBox:nth-child(2) button:disabled>i {
    opacity: .5;
}

#liveChat .typeArea>.inputBox:first-child>.fileContent {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

#liveChat .typeArea>.inputBox:first-child>.fileContent:after {
    content: "";
    width: 1px;
    height: 50%;
    position: absolute;
    left: 5px;
    top: 25%;
    background-color: var(--primaryColor);
    opacity: .3;
    transition: .2s;
}

#liveChat .typeArea>.inputBox:first-child:hover>.fileContent:after {
    opacity: 0;
}

#liveChat .typeArea>.inputBox:first-child:hover>.fileContent label {
    opacity: 1;
}

#liveChat .typeArea>.inputBox:first-child>.fileContent label {
    right: 2px;
    top: 0;
    transform: none;
    text-indent: 0;
    font-size: 23px;
    display: inline-table;
    aspect-ratio: 1 / 1;
    line-height: 24px;
    border: none;
    padding: 17px;
    position: relative;
    cursor: pointer;
    width: initial;
    pointer-events: auto;
    color: var(--primaryColor);
}

input[type="file"] {
    display: none;
}

#liveChat .typeArea .desc {
    display: none;
    color: White;
}

#liveChat[data-task="closed"] .typeArea>.inputBox {
    display: none;
}

#liveChat[data-task="closed"] .typeArea .desc {
    display: block;
}

#liveChat[data-task="closed"] .chatHead .actions>ul>li:nth-child(2) {
    display: none;
}


header .newAlert>i {
    position: relative;
}

header .newAlert>i:after {
    content: "";
    width: 11px;
    height: 11px;
    background-color: red;
    border-radius: 100%;
    position: absolute;
    right: -4px;
    top: -4px;
    border: solid 2px #e9edef;
    animation: pulseDanger 2s infinite;
}

header .newAlert:hover>i:after {
    border-color: var(--secondaryColor) !important;
    background-color: white;
    animation: pulse 2s infinite;
}

@media screen and (max-width:992px) {
    #messages>.box .messageList ul li .nameContent .name {
        font-size: 14px !important;
        line-height: 16px !important;
    }

    .modal-content .inputBox textarea {
        height: 120px;
    }

    .modal-content .inputBox input,
    .modal-content .inputBox select,
    .modal-content .inputBox textarea {
        background-color: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
        border-radius: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .modal-content {
        padding: 15px;
    }

    #liveChat .chatBox>ul li.userText.loadBubble {
        height: 50px;
        width: 74px;
    }

    #liveChat .chatBox .chatBody li.input-li.expanded:before {
        content: "";
        width: 100%;
        height: calc(100% + 15px);
        position: absolute;
        left: 0;
        top: -15px;
        background-color: var(--primaryColor);
        z-index: -1;
    }

    #liveChat .chatBox .chatBody li.input-li.expanded {
        height: 85px;
        position: sticky;
        top: 0;
        z-index: 15;
        padding-top: 15px;
    }

    #liveChat .typeArea>div {
        display: flex;
        align-items: flex-end;
    }

    #liveChat .typeArea>.inputBox textarea {
        padding: 20px 0px !important;
        font-size: 14px;
        padding-right: 40px !important;
    }

    #liveChat .typeArea {
        padding: 20px 15px;
    }

    #liveChat .chatBox {
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 15px;
        padding-right: 0px;
        padding-top: 0px !important;
        overflow-x: clip;
    }

    #liveChat .chatHead .actions:after {
        font-size: 27px;
        bottom: calc(0px - 27px);
        line-height: 27px;
    }

    #liveChat .chatHead .actions:before {
        font-size: 30px;
        left: calc(1px - 31px);
        line-height: 31px;
    }

    #liveChat .chatHead .actions ul {
        flex-flow: column;
        position: relative;
        z-index: 25;
        height: 38px;
        overflow-y: clip;
        transition: .2s;
    }

    #liveChat .chatHead .actions {
        padding: 20px 15px;
        width: 60px;
        border-bottom-left-radius: 35px;
        position: absolute;
        right: 0;
        top: 0;
    }

    #liveChat .chatHead {
        padding: 0px 8px;
        padding-right: 0px;
        gap: 7px;
        position: relative;
        z-index: 15;
        height: 78px;
        min-height: 78px;
    }

    #liveChat>.box {
        height: calc(100% - 15px);
        border-top-left-radius: 25px;
        margin-top: 15px;
    }

    #liveChat .chatBox>ul li {
        padding: 15px 15px;
        font-size: 13px;
    }

    .drawer {
        width: 100%;
        max-width: 100%;
        border-top-left-radius: 0px;
    }

}

/* ===== Live Chat End ===== */
/* ===== Messages Drawer ===== */
#messages {
    border-bottom-left-radius: 45px;
}

#messages>.box {
    background-color: #01142b;
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 15px;
}

#messages>.box .drawerHead {
    background-color: #01142b;
    display: flex;
    flex-flow: row;
    gap: 15px;
    margin-bottom: 0px;
    padding: 15px;
    align-items: center;
}


#messages>.box .drawerHead * {
    color: White;
}

#messages>.box .drawerHead .backToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

#messages>.box .drawerHead .backToggle i {
    display: inline-block;
    transform: rotate(180deg);
    padding: 10px;
    border-radius: 100%;
    transition: .2s;
    cursor: pointer;
    font-size: 16px;
}

#messages>.box .drawerHead .backToggle:hover i {
    background-color: rgba(255, 255, 255, .2);
}

#messages>.box .drawerHead .title {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

#messages>.box .drawerHead .desc {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    opacity: .6;
}

#messages>.box .messageList {
    padding: 25px 0px;
}

#messages>.box .messageList ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

#messages>.box .messageList ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 100%;
    padding: 15px 10px;
    padding-right: 20px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    background-color: #0b4262;
    transition: .2s;
    cursor: pointer;
    position: relative;
}

#messages>.box .messageList ul li:hover {
    background-color: #09324a;
}

#messages>.box .messageList ul li:hover:after {
    content: "";
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    left: -100px;
    z-index: -1;
}


#messages>.box .messageList ul li .visual {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    height: 46px;
    position: relative;
}

#messages>.box .messageList ul li[data-state="online"] .visual::before {
    content: "";
    background-color: #89db36;
    border: solid 5px #0b4262;
    position: absolute;
    z-index: 10;
    right: -5px;
    top: -5px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    width: 19px;
    height: 19px;
    animation: pulseSuccess 2s infinite;
}

#messages>.box .messageList ul li[data-state="offline"] .visual::before {
    content: "";
    background-color: #f72e2e;
    border: solid 5px #0b4262;
    position: absolute;
    z-index: 10;
    right: -5px;
    top: -5px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    width: 19px;
    height: 19px;
}

#messages>.box .messageList ul li:hover .visual::before {
    border: solid 5px #09324a;
}

#messages>.box .messageList ul li.unread {
    position: relative;
}

#messages>.box .messageList ul li.unread:before {
    position: absolute;
    right: -11px;
    top: -12px;
    content: "\e974";
    font-family: 'default' !important;
    z-index: 15;
    font-size: 15px;
    line-height: 15px;
    padding: 7px;
    background-color: var(--secondaryColor);
    border-radius: 100%;
    color: white;
    border: solid 1px rgba(255, 255, 255, .1);
    animation: bellSwing 2.5s ease-in-out infinite;
    /*transform-origin: top center;*/
}

@keyframes bellSwing {
    0% {
        transform: rotate(38deg);
    }

    50% {
        transform: rotate(-38deg);
        animation-timing-function: ease-out;
    }

    100% {
        transform: rotate(38deg);
    }
}

#messages>.box .messageList ul li .nameContent {
    display: flex;
    flex-flow: column;
    gap: 5px;
    color: white;
}

#messages>.box .messageList ul li .nameContent .name {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
}

#messages>.box .messageList ul li .nameContent .state {
    font-weight: 500;
    opacity: .4;
    font-size: 12px;
    line-height: 12px;
}

#messages>.box .messageList ul li[data-state="online"] .state .offline {
    display: none;
}

#messages>.box .messageList ul li[data-state="offline"] .state .online {
    display: none;
}

#messages>.box .messageList ul li .date {
    color: white;
    font-weight: 500;
    opacity: .4;
    font-size: 12px;
    line-height: 20px;
    margin-left: auto;
}

#messages>.box .messageList ul li .messageToggle {
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-left: 25px;
    opacity: .5;
}

#messages>.box .messageList ul li.unread .messageToggle {
    opacity: 1;
}

#messages>.box .messageList ul li .actions {
    position: absolute;
    display: flex;
    height: 100%;
    z-index: 30;
    aspect-ratio: 1 / 1;
    left: 0;
    top: 0;
}

#messages>.box .messageList ul li .actions .actionsBody {
    display: block;
    height: 100%;
}

#messages>.box .messageList ul li .actions .actionsBody .button {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    align-items: center;
    padding: 10px 15px;
    line-height: normal;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: #01142b;
    text-align: left;
}

#messages>.box .messageList ul li .actions .actionsBody .button:hover {
    color: white !important;
}

#messages>.box .messageList ul li .actions .actionsBody .projectName {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    display: block;
    min-width: 100%;
    opacity: .5;
    margin-bottom: 3px;
}

#messages>.box .messageList ul li .actions .actionsBody .button .projectName {
    opacity: .8;
}

@media screen and (max-width:992px) {
    .button.newAlert {
        padding: 0px;
    }

    #messages>.box .drawerHead {
        padding: 0px;
    }

    #messages {
        border-bottom-left-radius: 0px;
    }
}

/* ===== Messages Drawer End ===== */
/* ===== Add Ticket ===== */
#messages .box .addTicket {
    position: sticky;
    bottom: 65px;
    margin-top: auto;
    display: flex;
    justify-content: center;
}

#messages .box .addTicket>a {
    color: ghostwhite;
    aspect-ratio: 1/1;
    width: fit-content;
    height: 40px;
    box-shadow: 0px 0px 0px 1px ghostwhite;
    border-radius: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    opacity: .8;
    transition: .2s;
}

#messages .box .addTicket>a:hover {
    opacity: 1;
    color: var(--primaryColorHover);
    box-shadow: 0px 0px 0px 1px var(--primaryColorHover);
}

#messages .box .addTicket>a>span {
    position: absolute;
    bottom: -26px;
    white-space: nowrap;
    font-size: 13px;
    opacity: .8;
    font-weight: 500;
    letter-spacing: .3px;
}


/**/


#messages .box .addTicket_blank {
    position: sticky;
    bottom: 65px;
    margin-top: 15%;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    padding: 0px 15%;
}

#messages .box .addTicket_blank>a {
    color: ghostwhite;
    aspect-ratio: 1 / 1;
    width: fit-content;
    height: 70px;
    box-shadow: 0px 0px 0px 2px #f8f8ff80;
    border-radius: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    opacity: .8;
    transition: .2s;
    margin-top: 45px;
    font-weight: 600;
    font-size: 24px;
}

#messages .box .addTicket_blank>a:hover {
    opacity: 1;
    color: var(--primaryColorHover);
    box-shadow: 0px 0px 0px 1px var(--primaryColorHover);
}

#messages .box .addTicket_blank>a>span {
    position: absolute;
    bottom: -30px;
    white-space: nowrap;
    font-size: 14px;
    opacity: .8;
    font-weight: 600;
    letter-spacing: .3px;
}

/* ===== Add Ticket End ===== */

/* Custom fade-in and fade-out animations */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    border-bottom: none;
    text-align: center;
    font-weight: 600;
    flex-flow: column;
}

.modal-header h5 {
    text-align: center;
    font-weight: 800;
    width: 100%;
    color: ghostwhite;
    font-size: 29px;
    padding: 0px 10%;
    line-height: 32px;
}

.modal-header article {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--textColor);
    opacity: .8;
}

.modal-footer {
    border-top: none;
}

.modal-content {
    padding: 35px;
    position: relative;
    border-radius: 15px;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background-color: #01142b;
    box-shadow: 0px 0px 90px -19px var(--primaryColorHover);
}

.modal-content .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-content .inputBox label,
.modal-content .inputBox select,
.modal-content .inputBox textarea,
.modal-content .inputBox input {
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;

}

.modal-content form .inputBox button {
    margin: auto;
    display: flex;
    width: fit-content;
}
.modal-content form .inputBox button:hover {
    color: white !important;
}