/*Helper*/

:root {
    --font-heading: "Montserrat";
    --font-primary: "Mulish";
    --size-text: 16px;
    --size-h1: 45px;
    --size-h2: 40px;
    --size-h3: 35px;
    --size-h4: 30px;
    --size-h5: 25px;
    --color-primary: #00a2e9;
    --color-primary-light: #45b4e5;
    --color-secondary: #f16100;
    --color-secondary-light: #fbe8aa;
    --color-text: #232323;
    --color-gray: #aaabb8;
    --color-light-gray: #d1d1d1;
    --bg-light: #fff;
    --bg-grey: #ccc;
    --bg-color: #464866;
    --bg-dark: #25274d;
    --border-primary: 1px solid #414042;
    --border-secondary: 1px solid #d1d1d1;
}

*, body, .f-primary {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, .f-heading, .card-title, .form-group label {
    font-family: var(--font-heading);
}

/*HEADER*/

/*MAIN*/

main#content {
    /*padding-top:50px;*/
    /*padding-bottom:50px;*/
}

/*FOOTER*/

/**************************************MEDIA QUERIES**************************************/

@media only screen and (max-width: 767.98px) {}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {}

@media only screen and (min-width: 1200px) {}

/* GLOBAL ELEMENT */

.pop_up_box {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, 0.7);
    flex-wrap: wrap;
    z-index: 999;
}

.pop_up_box .box_content {
    width: 90%;
    max-width: 495px;
    border-radius: 15px;
    background-color: white;
    padding: 35px;
    position: relative;
}

.btn_container {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.btn_container .my_btn {
    width: 48%;
    text-align: center;
    color: white;
    text-decoration: none !important;
    padding: 10px;
}

.my_btn_confirm {
    background-color: var(--bs-success);
}

.my_btn_cancel {
    background-color: var(--bs-danger);
}

.my_btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.form_group {
    padding: 15px 5px;
    border-radius: 5px;
    width: 100%;
}

.form_group label {
    width: 100%;
    color: #393939;
    line-height: 1.5;
    text-transform: uppercase;
}

.form_group input:not([type="submit"]), .form_group textarea, .form_group select {
    display: block;
    width: 100%;
    background: 0 0;
    color: #999;
    height: 40px;
    padding: 0px 20px;
    border: var(--border-primary);
    border-radius: 20px;
}

.form_group textarea {
    min-height: 80px;
    padding-top: 9px;
    padding-bottom: 13px;
    resize: none;
}

.form_group input[disabled] {
    background-color: #e0e0e0;
}

.form_group input[disabled]:hover {
    cursor: not-allowed;
}

textarea:focus, input:focus {
    outline: none;
}

.my_btn {
    width: 100%;
    line-height: 32px;
    font-size: 14px;
    border-radius: 25px;
}

.input_join {
    display: flex;
}

.input_join input {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-right: 0px !important;
}

.input_join a {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border: var(--border-primary);
    height: 40px;
    border-left: 0px;
    max-width: 130px;
}