@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css");

* {
    font-family: "Open Sans", "sans-serif", "FontAwesome";
}

:root {
    --gray: #1c1e21;
    --darkgray: #34383d;
}

body {
    background: #34383d;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: -5;
}

#my_workspace {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px #858585a1;
    border: 1px solid #80808026;
    padding: 2em 3em;
    margin: auto;
    margin-top: 2em;
    margin-bottom: 2em;
}

.auth_header {
    height: 50px;
    padding: 10px 30px 10px 40px;
    position: relative;
    box-shadow: 0px 7px 20px 20px #0000002e;
    background: #1c1e21;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.frnt_logo {
    background-image: url("/public/img/logos/fnlogo3.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 45px;
    width: 230px;
    cursor: pointer;
}

.header_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 20em;
    justify-content: space-between;
    align-items: center;
}

.header_buttons i {
    font-size: 24px;
    color: #34383d;
    transition: all 0.5s ease;
}

.header_buttons i:hover {
    color: #f47920;
    cursor: pointer;
}

.header_send_button_div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.header_send_button_div span {
    color: #34383d;
    font-size: 13px;
    position: relative;
    left: 0px;
    font-weight: 900;
    top: -8px;
}

#sign_out_button {
    background: none;
    border: 1px solid #f47920;
    width: 200px;
    height: 35px;
    border-radius: 5px;
    color: #e2e2e2;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 4px;
    transition: all 0.5s ease;
}

#sign_out_button:hover {
    background: #f47920;
    box-shadow: -1px 0px 20px 1px #f47920;
    letter-spacing: 6px;
}

#sign_out_button:active {
    background: none;
    transform: scale(0.97);
    border: none;
    box-shadow: none;
}

#accaunt_data_list {
    flex-grow: 1;
    background-color: #e2e2e2;
    position: relative;
    z-index: -4;
    padding: 1em 2em;
    color: #34383d;
}

#accaunt_data_list h1 {
    color: #34383d;
    text-align: center;
    font-size: 20px;
    text-shadow: 0px 0px 8px #939393;
}

#accaunt_data_list hr {
    margin: 0;
    border: 1px solid #f47920b3;
}

#a_portal_footer {
    height: 25px;
    background-color: #f47920;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 1em;
    align-items: center;
    margin-top: 1em;
}

#a_portal_footer a {
    transition: all 0.5s ease;
}

#a_portal_footer a:hover {
    transform: scale(1.1);
}

#a_portal_social_media {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    min-width: 15vw;
}

#a_portal_social_media i {
    font-size: 25px;
}

#a_portal_footer p {
    color: #e2e2e2;
    font-weight: 700;
}

#accaunt_main_content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 2em;
    flex-grow: 1;
    z-index: -3;
}

/* DIALOG main settings */

dialog {
    animation: fade-out 0.3s ease-out;
    border: none;
    box-shadow: 0px 0px 20px 2px black;
    height: 600px;
    padding: 0;
    background: #e2e2e2;
}

dialog h2 {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    color: #34383d;
    text-shadow: 0px 0px 8px #939393;
}

dialog > i {
    font-size: 40px;
    position: absolute;
    right: 10px;
    top: 5px;
    color: #34383d;
    cursor: pointer;
    transition: all 0.5s ease;
}

dialog > i:hover {
    transform: scale(1.05);
}

#add_user_avatar_dialog {
    width: 700px;
}

dialog[open] {
    animation: fade-in 0.3s ease-out;
}

dialog[open]::backdrop {
    animation: backdrop-fade-in 0.3s ease-out forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: scaleY(0);
        display: none;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        display: block;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        transform: scaleY(1);
        display: block;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        display: none;
    }
}

@keyframes backdrop-fade-in {
    0% {
        background-color: rgb(0 0 0 / 0);
    }

    100% {
        background-color: rgb(0 0 0 / 0.5);
    }
}

/* ////////////////////////////////////////// */

.circle_loader {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 1em;
    border-radius: 50%;
    -webkit-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
}

.sm_circle {
    width: 20px;
    height: 20px;
    border: 5px solid #eaf0f6;
    border-top: 5px solid #ed8e00;
}

.md_circle {
    width: 30px;
    height: 30px;
    border: 6px solid #eaf0f6;
    border-top: 6px solid #ed8e00;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* //////////////////////////////////////////// */

#qualification_filter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 1em 0;
    height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
}

#qualification_filter.show_qualification_filter {
    height: 140px;
}

.rotate_arrow {
    transform: rotate3d(1, 0, 0, 180deg);
}

.multiselect,
.checkboxes {
    width: 200px;
    max-height: 300px;
}

.selectBox {
    position: relative;
    cursor: pointer;
}

.selectBox select {
    width: 100%;
    font-weight: bold;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.checkboxes {
    position: absolute;
    background: #ededed;
    border: 1px #dadada solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1em 0;
    overflow-y: scroll;
}

.checkboxes label {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    line-height: 18px;
    margin-bottom: 0.4em;
}

.display_none {
    display: none;
}

.speed_filter_container {
    height: 6em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}

.speed_filter_container > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#qualification_filter .speed_filter_container label,
#qualification_filter .tpia_filter label {
    margin-right: 1em;
    font-weight: 700;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    padding: 0 5px;
}

.main_button {
    background: #f47920;
    margin: auto;
    width: 200px;
    height: 40px;
    color: #e2e2e2;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f47920;
    margin: 1em 0;
}

.main_button:hover {
    background-color: #e2e2e2;
    color: #f47920;
    letter-spacing: 1px;
    border: 1px solid gray;
}

/* Custom Select wrapper */
.select_div {
    position: relative;
    display: flex;
    width: 20em;
    height: 2.5em;
    border-radius: 0.25em;
    overflow: hidden;
}

/* Arrow */
.select_div::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.6em 0.8em;
    background-color: #1c1e21;
    transition: 0.25s all ease;
    pointer-events: none;
}

/* Transition */
.select_div:hover::after {
    color: #f47920;
}

.select_div select {
    /* Reset Select */
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
}

.alert_success,
.alert_error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    padding: 1em;
    font-weight: 600;
}

.alert_success {
    background-color: #00781430;
    color: var(--err-allert-green);
    -webkit-box-shadow: 1px 1px 8px 2px #00781447;
    box-shadow: 1px 1px 8px 2px #00781447;
}

.alert_error {
    background-color: #b9000024;
    color: var(--err-allert-red);
    -webkit-box-shadow: 1px 1px 8px 2px #b9000033;
    box-shadow: 1px 1px 8px 2px #b9000033;
}

/* 

.select_div_md {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 0.25em;
    width: 24em;
    height: 3em;
}

.select_div_md::after {
    padding: 1em 1em;
}


.select_div_lg::after,
.select_div_md::after,
.select_div_sm::after,
.select_div_md_narrow::after,
.select_div_sm_narrow::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1c1e21;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
    pointer-events: none;
}


.select_div_lg:hover::after,
.select_div_md:hover::after,
.select_div_sm:hover::after,
.select_div_md_narrow:hover::after,
.select_div_sm_narrow:hover::after {
    color: #f47920;
}

.select_div_md select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 10px red;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: #34383d;
    background-image: none;
    cursor: pointer;
}

.select_div_md select {
    font-size: 14px;
} */
