/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */


@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Light.woff2") format("woff2"),
    url("../fonts/Gilroy-Light.woff") format("woff");
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"),
    url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"),
    url("../fonts/Gilroy-Semibold.woff") format("woff");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2"),
    url("../fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

.gtea_admin__wrapper {
    font-family: "Gilroy";
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    margin-right: 20px;

}

.gtea_admin_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #12162d;

    padding: 20px;
    margin-bottom: 60px;
}

.gtea_admin_header__logo {
    display: flex;
    align-items: center;
    flex-basis: 40%;
}

.gtea_admin_header__logo svg {
    max-width: 180px;
    margin-right: 30px;
}

.gtea_admin_header__title {
    margin: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.gtea_admin_header__title em {
    font-style: normal;
    font-size: 12px;
}

.gtea_admin_header__contact {
    display: flex;
    align-items: center;
}

.gtea_admin_header__contact h4 {
    color: #fff;
    margin-right: 20px;
    font-size: 16px;
}

.gtea_admin__wrapper .btn_base {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 200px;
    height: 56px;
    font-size: 16px;
    border: none;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-size: 300% 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    text-decoration: none !important;
}

.gtea_admin__wrapper .btn_base:hover,.btn_base:focus {
    text-decoration: none !important;
    background-position: 100% 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

.gtea_admin__wrapper .btn_bg_5 {
    background-image: linear-gradient(to right,#138EFF,#FFCA0F,#FFCA0F,#138EFF);
    box-shadow: 0 4px 15px 0 rgba(45,54,65,.75);
}

.gtea_admin__cards {
    margin: 0 10% 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
}

.gtea_admin__card {
    padding: 30px;
    border: 10px solid #f3f3f3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.gtea_admin__card:hover,
.gtea_admin__card:focus {
    border-color: #ce8e1f;
}

.gtea_admin__card_title {
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #12162d;
}

.gtea_admin__card p {
    font-size: 16px;
}
