* {
    box-sizing: border-box;
}

a {
	text-decoration: none;
}

.mainContainer {
    display: flex;
    gap: 15px;
}

/* Side Bar */
.sideBar {
    max-width: 324px;
}

.header {
    width: 100%;
    box-shadow: 0px 3px 21px 0px var(--boxshadow);
    background: var(--third);
    border-radius: 6px;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    overflow-x: auto;
    margin-bottom: 25px;
}

.header * {
    font-size: 11px !important;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.header p {
    min-width: 300px;
}

.header i {
    margin-right: 15px;
    transform: scale(1.5);
}

.dash {
    margin: 0 15px;
    border: solid #24E649 2px;
    border-radius: 6px;
    min-width: 15px;
}


/* Sidebar Boxes */
.box {
    background: var(--primary);
    padding: 20px 15px !important;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0px 3px 21px 0px var(--boxshadow);
}

.form {
    color: var(--hover-fff);
}

.boxTitle {
    font-weight: bold;
}

.boxTitle i {
    margin-right: 5px;
}

.sideBtn {
    border-radius: 6px;
    box-shadow: 0px 2px 9.1px 0.9px rgba(175, 189, 215, 0.22);
    height: 46px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--font-1);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.sideBtn * {
    transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

.sideBtn:hover,
.sideBtn:hover i {
    background: var(--hover-fff);
    color: #2FD292 !important;
}

.sideBtnActive *,
.sideBtnActive {
    color: #2FD292 !important;
}

.sideIcon {
    margin-right: 10px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sideIcon i {
    color: var(--hover-fff);
}

.sideGreenBtn {
    margin-top: 15px;
    min-width: 80px;
    width: 100%;
    height: 65px;
    background: rgb(48, 209, 150);
    background: linear-gradient(90deg, rgba(48, 209, 150, 1) 32%, rgba(35, 231, 68, 1) 100%);
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}

.sideGreenBtn:hover {
    background: linear-gradient(90deg, rgb(41, 196, 139) 32%, rgb(28, 212, 59) 100%);
}

.sideBtnImage {
    margin-right: 15px;
}


.sideText1,
.sideText2 {
    color: #FFF !important;
    font-size: 14px;
    width: 100%;
    text-align: left;
}

.sideText1 {
    font-weight: bolder;
}

.sideText2 i {
    color: #FFF;
}

.sideText2 {
    font-size: 13px;
    text-decoration: underline;
}

/* Referral Box */
.sideReferral {
    background-image: url("./../../assets/images/referral.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    border-radius: 6px;
    padding: 300px 25px 0;
    margin-bottom: 15px;
    max-width: 335px;
    min-width: 300px;
}

.sideProgressContainer {
    min-width: 100%;
    max-height: 50px;
}

.sideProgressBar {
    min-width: 100%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.459);
    border-radius: 5px;
    padding: 4px;
    position: relative;
    display: flex;
    align-items: center;
}

.sideProgressLoader {
    height: 100%;
    background-color: white;
    border-radius: 15px;
}


.sideProgressNumbers {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-top: 3px;
    font-size: 14px;
}

.sideProgressNumbers * {
    color: #EEE;
}

.referralTitle {
    font-weight: 13px;
    color: #EEE;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.referralBtn {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background 0.2s ease-in-out;
    outline: none;
    box-shadow: none;
    width: 100%;
    border: none;
    color: black;
}

.referralBtn:hover {
    background-color: rgb(240, 240, 240);
}

/* Payments Methods */
.paymentsContainer {
    display: flex;
    gap: 6px;
}

.paymentsContainer .col-4 {
    width: 32%;
}

.paymentsContainer>* {
    border-radius: 6px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 27px 0px rgba(225, 233, 250, 0.004);
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Components */
.greenBtnCenter {
    min-width: 80px;
    height: 40px;
    color: #FFF;
    background: rgb(48, 209, 150);
    background: linear-gradient(90deg, rgba(48, 209, 150, 1) 32%, rgba(35, 231, 68, 1) 100%);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
    word-break: break-all;
}

.greenBtnCenter:hover {
    background: linear-gradient(90deg, rgb(41, 196, 139) 32%, rgb(28, 212, 59) 100%);
}

.purpleBtnCenter {
    min-width: 80px;
    height: 40px;
    color: #FFF;
    background-image: -moz-linear-gradient(0deg, rgb(232, 119, 174) 0%, rgb(124, 115, 243) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(232, 119, 174) 0%, rgb(124, 115, 243) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(232, 119, 174) 0%, rgb(124, 115, 243) 100%);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
    word-break: break-all;
}


/* Components */
.blueBtn {
    min-width: 80px;
    height: 40px;
    color: #FFF;
    background-image: -moz-linear-gradient(90deg, rgb(79, 172, 254) 0%, rgb(0, 242, 254) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(79, 172, 254) 0%, rgb(0, 242, 254) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(79, 172, 254) 0%, rgb(0, 242, 254) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}

.blueBtn:hover {
    background-image: -moz-linear-gradient(90deg, rgb(61, 155, 238) 0%, rgb(2, 220, 231) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(61, 155, 238) 0%, rgb(2, 220, 231) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(61, 155, 238) 0%, rgb(2, 220, 231) 100%);
}

/* Section Title */
.sectionTitle {
    display: flex;
    font-weight: bold;
    font-size: 20px;
}

.sectionIcon * {
    color: #2FD292;
    fill: #2FD292;
    margin-right: 10px;
}

canvas,
canvas * {
    position: relative !important;
    z-index: 1 !important;
}

input::readonly {
    background-color: #e3e3e3;
}


@media (max-width: 1200px) {
    main {
        flex-direction: column-reverse;
    }

}

@media (max-width: 1120px) {
    .mainContainer {
        flex-direction: column;
    }

    .sideBar {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0 15px;
    }

    .sideBar>* {
        width: 33.3%;
        flex: 1;
    }

    .sideBar .box {
        min-width: 300px;
    }

    .paymentsContainer {
        display: none;
    }

}

@media (max-width: 940px) {
    .header {
        font-size: 15px;
    }

    .header p {
        margin: 10px auto;
    }
}