@font-face {
    font-family: 'Involve';
    src: url(../fonts/Involve-Regular.otf);
    font-weight: 200; }
@font-face {
    font-family: 'Involve';
    src: url(../fonts/Involve-Medium.otf);
    font-weight: 400; }
@font-face {
    font-family: 'Involve';
    src: url(../fonts/Involve-SemiBold.otf);
    font-weight: 500; }
@font-face {
    font-family: 'Involve';
    src: url(../fonts/Involve-Bold.otf);
    font-weight: 700; }

:root {
    --border-radius: 30px;
    --color-violet: #4B49AC;
    --color-green: #57b657;
    --dark-cyan: #0e2050;
    --white: #ffffff;
    --light-gray: #efefef;
    --deep-blue: #6992B2;
    --light-blue: #C2D5EF;
    --superlight-blue: #f8fafc;
    --color-black: #000;
    --color-white: #FFF;
    --color-red: #ff4747;
    --color-blue: #248afd;
    --color-cyan: #182C4C;
    --color-deep-blue: #6992B2;
    --color-light-blue: #C2D5EF;
    --color-space-gray: #5a6c77;
    --color-gray-border: #efefef;

    /*--bg-gray: rgba(255,255,255,0.3);*/
    --bg-gray: #5e6c82;
    --bg-gv-rose: linear-gradient(180deg, rgba(252,214,202,1) 0%, rgba(253,229,222,1) 100%);}

html, body {
    font-family: 'Involve', sans-serif;
    margin: 0;
    padding:0;
    height: 100%;}

a{ text-decoration: none;}

.layout {
    background: #f2edf3;
    color: var(--color-space-gray);
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;}

.layout * {
    position: relative;
    z-index: 1;}

/*.layout::before {*/
/*    z-index: 0;*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('/local/templates/index/img/back-ani-green.svg') no-repeat center;*/
/*    background-size: 146%;*/
/*    opacity: 0.05;}*/

.left__col {
    overflow: hidden;
    position: relative;
    min-width: 360px;
    background: var(--dark-cyan);}

.right__col {
    min-width: 300px;
    background: var(--light-gray);}


.main__col {
    background: #f2edf3;
    display: flex;
    flex-direction: column;
    height: 100%;

}

.main__col::before {
    z-index: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/local/templates/index/img/back-ani-green.svg') no-repeat center;
    background-size: 146%;
    opacity: 0.05;
}

.top__col {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px 30px 20px 0;
    background: var(--superlight-blue);
    box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.6);}

.top__col h2 {margin: 0;}
.circle__logo {display: none;}

.logo {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;}

.logo img {
    width: 100%;
    /*max-width: 200px;*/
}

.heading {
    border-bottom: 1px solid #ddd;
    margin: 0 0 30px 0;}

.heading h2 {
    margin:  20px 0;
}
.my_cabinet {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;}

.my_cabinet .exit_row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;}

.main__menu .section__link {
    color: var(--light-blue);
    text-decoration: none;
    padding: 10px 0;
    display: flex;
    align-items: center;}

.main__menu .section__link  i {
    margin: 0 10px 0 0;}

.menu__grid__item.is-active .section__link {
    color: var(--color-white);}

.main__menu .section__link:hover,
.main__menu .section__link.active {
    color: var(--white);}

.content{
    padding: 30px;}

.deep-blue-outline {
    color: var(--color-deep-blue) !important;
    padding: 8px;
    font-size: 12px;
    line-height: 1rem;
    border: 1px solid var(--color-deep-blue) !important;
    border-radius: 1rem;
    background: none !important;
    cursor: pointer;
}
.deep-blue-outline:hover {
    background: var(--color-deep-blue) !important;;
    color: var(--color-white) !important;;
}