:root{
    --background-color: #dee2e6;
    --button-main-color: hsl(216deg 98% 52%);
    --button-main-color-hover: hsl(216deg 90% 44%);
    --main-blocks_color: white;
    --main-border-radius-s: .25rem;
    --main-border-radius-m: 5px;
    --main-border-radius-l: 8px;
    
    
    --search-btn-color1:#fff;
    --search-btn-color2:#0059ab;
    --color1: rgba(255,255,255,.55);
}

@font-face {
	font-family: 'SCRIPTBL';
	src: url('/res/SCRIPTBL.eot');
	src: local('SCRIPTBL'), url('/res/SCRIPTBL.woff') format('woff'), url('/res/SCRIPTBL.ttf') format('truetype');
}

#app{
    background:var(--background-color);
    min-height: calc( 100vh - 55px);
    position: relative;
    padding-bottom: 4.5em;
}


.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #000;
    background-color: #f8f9fa;
}

.btn-primary, .btn-danger, .btn-success {
    color: #fff;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover, .btn-check:focus+.btn-primary, .btn-primary:focus {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color:#fff;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover, .btn-check:focus+.btn-danger, .btn-danger:focus {
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover, .btn-check:focus+.btn-success, .btn-success:focus {
    background-color: #157347;
    border-color: #146c43;
}

.btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active,
.btn-check:checked+.btn-danger, .btn-danger.active, .btn-danger:active,
.btn-check:checked+.btn-success, .btn-success.active, .btn-success:active {
   box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
}

.btn-check:focus+.btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 0.25rem rgb(225 83 97 / 50%);
}

.btn-check:focus+.btn-success, .btn-success:focus {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 0 0 0.25rem rgb(60 153 110 / 50%);
}

.btn.disabled, .btn:disabled {
   pointer-events: none;
   opacity: .65;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgb(25 135 84 / 25%);
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgb(220 53 69 / 25%);
}
.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
    border-color: #dc3545;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545;
}


.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}





.userProfileButton{
    margin-right: 5px;
    padding: 1px;
    border-radius: 50%;
}
.userProfileButton:hover, .userProfileButton:focus{
    color:#014e9c;
}







/*.myCard{
    margin-top:5px;
    margin-bottom:5px;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}*/



.navbar{
    background: linear-gradient(-90deg,#0063b8,#050b40)!important;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 1px 10px 0 #000000;
}

.navLinks{
    position: relative;
}
.navLinks:hover{
    color: white!important;
    text-shadow: 0 0 8px black;
}
.navLinks:before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    bottom: 5px;
    left: 50%;
    position: absolute;
    transition: all ease-in-out 300ms;
}
.navLinks:hover:before{
    background: white;
    left: 0.5rem;
    width: calc( 100% - 1rem );
}


.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-brand {
    padding-top: 0.3125rem;
    margin-right: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-main .navbar-brand {
    color: #fff;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    color: rgba(255,255,255,.55);
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
    margin-left: -0.5rem;
    margin-right: 0.5rem;
}

.navbar-main .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-main .navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


.nav-div{
    display: flex;
}


.collapse:not(.show) {
    display: none;
}




.search-form{
    position: relative;
    min-width: 40px;
}

.search-input{
    border: 0;
    border-radius: 30px;
    transition: box-shadow ease-out .2s, width ease-out .2s, right ease-out .2s, visibility 0s, opacity 0.2s linear, z-index 0.2s step-end;
    transition-delay: 0s, 0.2s, 0s, 0s, 0s,0s;
    right: 7px;
    top: 0;
    position: absolute;
    width: 260px;
    height: 40px;
    visibility: visible;
    opacity: 1;
    padding-right: 2.5rem;
}

.search-input:focus-visible{
    outline: none;
    box-shadow: 1px 3px 11px 0 #000000;
}

.search-btn{
    border-radius: 50%;
    width: 34px;
    height: 34px;
    background: var(--search-btn-color2)!important;
    border: 0;
    position: absolute;
    top: 3px;
    right: 10px;
    z-index:1;
    transition: color ease-out .2s, background ease-out .2s;
    color:var(--search-btn-color1)!important;
}

.search-btn:hover{
    background: var(--search-btn-color1)!important;
    border: 1px solid #0063b8;
    color:var(--search-btn-color2)!important;
}


.search-btn svg{
    position: absolute;
    left: 9px;
    top: 9px;
}

.search-btn:hover svg{
    left: 8px;
    top: 8px;
}



.menu-div{
    margin-right: 10px;
    width: 30px;
    z-index: 3;
    cursor: pointer;
    transition-delay: .4s;
    transition-property: z-index;
    transition-timing-function: steps(2);
}

.menu-button{
    top:7px;
    width: 30px;
    height: 2px;
    background: white;
    margin-top: 12px;
    position:relative;
    transition:top ease-out .3s, left ease-out .3s, transform ease-out .3s, width ease-out .3s;
    
}

.menu-button:before{
    content: "";
    width: 30px;
    height: 2px;
    background: white;
    display: block;
    position: absolute;
    top: -8px;
    left: 0;
    transition:top ease-out .3s, left ease-out .3s, transform ease-out .3s;
    
}

.menu-button:after{
    content: "";
    width: 30px;
    height: 2px;
    background: white;
    display: block;
    top: 8px;
    position: absolute;
    transition:top ease-out .3s, left ease-out .3s, transform ease-out .3s;
    
}

.menu-div.show .menu-button{
    width:0;
}

.menu-div.show .menu-button:before{
    top: 0;
    transform: rotate(45deg);
}

.menu-div.show .menu-button:after{
    transform: rotate(-45deg);
    top:0;
}


@keyframes menu-slidein {
    from {left: -300px;}
    to {left: 0;}
}

@keyframes menu-slideout {
    from {left: 0;}
    to {left: -300px;}
}

.mobileMenyBG{
    display:none;
}


.profileModal{
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 12px 2px black;
    padding-bottom: 0.25em
}

.profileModal .username{
    margin-bottom: 0.5rem;
}

.profileModal .password{
    margin-bottom: 0.25rem;
}

.profileModal .logined{
    display: flex;
    flex-direction: column;
    align-items: center;
}

dialog::backdrop{
    background: rgba(0, 0, 0, 0.4);
}

.modal-header {
    margin-bottom: 1.5em;
}

.modal-title {
    text-align: center;
}

.btn-close, .btn-settings{
    position: absolute;
    top: 10px;
    width: 23px;
    height: 23px;
    cursor: pointer;
    color: gray;
    mix-blend-mode: difference;
    transition: color .1s ease-in;
}

.btn-close{
    right: 10px;
}

.btn-settings{
    left: 10px;
}

.btn-close svg{
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 23px;
}

.btn-close:hover, .btn-settings:hover{
    color: lightgray;;
}

.invalid-feedback {
    display: none;
}

.profileModal .custom-control{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profileModal .loginButton{
    width: 100%;
    margin-top: 1em;
}

.profileModal .registerLink{
    position: relative;
    padding: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0.5rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.profileModal .registerLink:before{
    content: "";
    position: absolute;
    top: 0px;
    left: -20px;
    right: -20px;
    height: 1px;
    background: lightgrey;
}

.customLink{
    color: var(--bs-link-color);
    cursor: pointer;
    text-decoration: none;
}

.main-error{
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    position: relative;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}

.main-error:empty{
    display: none;
}


.profileModal .avatar{
    width: 120px;
    height: 120px;
    margin-top: -0.5em;
    border-radius: var(--main-border-radius-s);
}

.profileModal .name{
    font-size: large;
    font-weight: bold;
}

.profileModal .group:before, .mainProfile .group:before{
    content:"";
    color: black;
    font-weight: bolder;
    border: 2px solid;
    border-radius: 6px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: small;
}

.profileModal .guest.group:before, .mainProfile .guest.group:before{
    content:"Гость";
    color: gray;
}

.profileModal .banned.group:before, .mainProfile .banned.group:before{
    content:"Заблокирован";
    color: #e10f00;
}

.profileModal .user.group:before, .mainProfile .user.group:before{
    content:"Пользователь";
    color: #0049ff;
}

.profileModal .confirmed.group:before, .mainProfile .confirmed.group:before{
    content:"Проверенный";
    color: green;
}

.profileModal .vip.group:before, .mainProfile .vip.group:before{
    content:"VIP";
    color: #7b0de1;
}

.profileModal .moderator.group:before, .mainProfile .moderator.group:before{
    content:"Модератор";
    color: pink;
}

.profileModal .admin.group:before, .mainProfile .admin.group:before{
    content:"Администратор";
    color: #8f01ae;
}


.profileModal .myStuff{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: small;
    margin-top: 1em;
    margin-inline: -0.9em;
    padding-inline: 0.2em;
    background: var(--bs-blue);
    border-radius: 5px;
}

.profileModal .myStuff > div{
    text-align: center;
    margin: 0.2em;
    margin-block: 0.6em;
    padding-block: 0.3em;
    background: white;
    border-radius: 5px;
    transition: box-shadow .2s ease-in;
}

.profileModal .myStuff > div:hover{
    cursor: pointer;
    box-shadow: 0px 1px 5px 1px black;
    transition: box-shadow .2s ease-in;
}

.profileModal .myStuff > div:nth-child(2){
    padding-inline: 0.3em;
}

.profileModal .myStuff .count {
    display: block;
    margin-bottom: -0.4em;
}

.profileModal .myStuff > div > span{
    font-size: large;
}

.profileModal .buttonsDiv{
    width: calc( 100% + 1.4em );
    margin-top: 0.7em;
    margin-bottom: 0.1em;
}

.profileModal .profileBtn{
    width: 49%;
    margin-right: 2%;
}

.profileModal .exitBtn{
    width: 100%;
}

.profileModal .exitForm{
    width: 49%;
    display:inline-block;
}

.section.full{
    width:100%;
}

.section .title{
    position: relative;
    font-size: 30px;
    font-style: oblique;
    font-weight: bolder;
    text-align: center;
    margin: -0.75rem;
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: serif;
    text-shadow: rgb(70 70 70) 1px 1px 0px;
    background: white;
    border: 1px solid;
    box-shadow: 0px 3px 10px 1px rgb(0 0 0 / 60%);
    border-radius: 5px;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.mainContainer{
    margin-top: 55px;
    padding-top: 1rem;
}

.moduleBox{
    background:white;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    padding: 0.7rem;
    margin-bottom: 1rem;
}


.myModal{
    background: white;
    max-width: 600px;
    padding: 0.7rem;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 12px 2px black;
}

.myModal .close{
    float: right;
}

.myModal .head{
    font-size: large;
    padding-bottom: 0.5rem;
    color: gainsboro;
    mix-blend-mode: difference;
    display: inline-block;
    font-weight: normal;
    margin-right: 25px;
}

.myModal .goToBtn{
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 0.4rem;
}

.myModal .modalComment{
    color: dimgray;
    line-height: 0.9rem;
    display: inline-block;
}

.myModal .scrollBox{
    max-height: 75dvH;
    overflow-y: scroll;
}

.myModal .scrollBox::-webkit-scrollbar {
    display: none;
}

@media (max-width: 991px){
    
    .mobile-menu.closed{
        animation-duration: .4s;
        animation-name: menu-slideout;
        animation-timing-function: ease-in-out;
        animation-direction: alternate;
        display:block;
        left:-300px;
    }
    
    .mobile-menu{
        left: 0;
        position: fixed;
        top: 0;
        padding: 10px;
        width: 200px;
        z-index: 110;
        transform-style: preserve-3d;
        padding-top: 45px;
        animation-duration: .4s;
        animation-name: menu-slidein;
        animation-timing-function: ease-in-out;
    }
    
    .bluredBG:not(.show){
        display:none;
    }
    
    .bluredBG{
        content:"";
        display: block;
        left: 0;
        position: fixed;
        top: 0;
        width: calc( 100vw + 301px );
        height:100vh;
        backdrop-filter: blur(1px);
        background:rgba(0,0,0,.3);
        transform: translateZ(-1px);
    }
    
    .menu-div.show{
        z-index:112;
        transition-delay: 0s;
    }
    
    .navLinks{
        text-align: center;
    }
    
    .navLinks:hover{
        color: #072966 !important;
    }
    
    .nav-item{
        border-bottom: 1px solid white;
    }
    
    .nav-item:last-child{
        border-bottom: 0;
    }

    .navLinks:before {
        height: 40px;
        bottom: 0;
        width: 20px;
        left: calc( 50% - 10px );
    }

    .navLinks:hover:before {
        background: white;
        left: 0;
        z-index: -1;
        width: 100%;
        box-shadow: 2px 4px 4px 2px black;
    }
    
    .navLinks:hover{
        text-shadow: none;
    }
    
    .mobileMenyBG{
        position: absolute;
        display:block;
        right: -90px;
        width: 360px;
        height: 360px;
        top: -50px;
        z-index: -1;
        pointer-events: none;
    }

    .mobileMenyBG path{
        fill: #072966;
        opacity: 1;
        stroke: white;
        fill-opacity: 1;
        stroke-width: 1;
        stroke-linecap: round;
        stroke-linejoin: bevel;
        stroke-miterlimit: 4;
        stroke-dasharray: none;
        stroke-opacity: 1;
    }
    
}

@media (min-width: 992px){
    .navbar-expand .navbar-collapse {
        display: flex!important;
        flex-basis: auto;
    }
    .navbar-expand .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

@media (min-width: 668px){
    .search-input{
        width: 300px;
    }
}


@media (max-width: 600px){
    .search-input{
        width:40px;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top:8px;
        right: 67px;
        transition-delay: .6s, .6s, .6s, .8s, .6s, .6s;
        z-index:3;
    }

    .search-form:hover > .search-input, .search-input:focus{
        z-index: 102;
        transition-delay: 0s, 0s, 0s, 0s;
        width: calc( 100% - 10px );
        visibility: visible;
        opacity: 1;
        right: 5px;
        top: 8px;
    }
    
    .search-btn{
        width: 40px;
        height: 40px;
        margin-left: -46px;
        margin-top: -3px;
        background: transparent !important;
        border: 1px solid white;
        transition: color ease-out .2s, background ease-out .2s, width ease-out .2s, height ease-out .2s, border ease-out .2s, top ease-out .2s, right ease-out .2s, z-index .1s step-end;
        transition-delay: .6s;
    }
    
    .search-form:hover > .search-btn, .search-input:focus + .search-btn{
        background: var(--search-btn-color2)!important;
        color:var(--search-btn-color1)!important;
        width: 34px;
        height: 34px;
        top: 6px;
        right: -49px;
        border: 0;
        transition-delay: 0s;
        z-index: 103;
    }
    
    .search-btn:hover{
        width: 34px;
        height: 34px;
        top: 6px;
        right: 7px;
        transition-delay: 0s;
    }
    
    .search-btn svg{
        left: 11px;
        top: 11px;
        transition: left ease-out .2s, top ease-out .2s;
        transition-delay: .6s;
    }

    .search-form:hover > .search-btn svg, .search-input:focus + .search-btn svg{
        left: 9px;
        top: 9px;
        transition-delay: 0s;
    }
    
    .search-btn:hover svg{
        transition-delay: 0s;
    }
    
    .search-input:focus-visible{
        box-shadow: none;
    }
}

@media (min-width: 380px){
    #app{
        padding-bottom: 3em;
    }
}


.footer{
    position: absolute;
    bottom: 0;
    background: white;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 3px 0 black;
}

.stop-scrolling {
  overflow: hidden;
}



/***********Messages**********/

.msgs{
    position: fixed;
    z-index: 99;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.message{
    background: white;
    padding: 0.2rem;
    margin-block: 0.4rem;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 50%);
    border-radius: 4px;
    min-width: 300px;
    position: relative;
    max-width: 500px;
    max-height: 200px;
    transition: transform 0.8s ease;
}

.message-enter-active{
    animation: messageShow 0.4s;
}

.message-leave-active {
    animation: messageShow 0.4s reverse;
    transition: none;
}

.message .head{
    position: relative;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid lightgray;
}

.message .btn-close{
    top: -2px;
    right: -2px;
    float: right;
    position: relative;
}

.message .logo{
    width: 20px;
    height: 20px;
    margin-right: 0.3rem;
    vertical-align: sub;
}

.message .body{
    padding: 0.2rem;
}

.message .time{
    float: right;
}

.message .title{
    color: var(--bs-blue);
}

.message.error{
    background:rgb(255 212 212);
}

.message.error .head{
    border-bottom: 1px solid #d19a9a;
}

.message.error .title{
    color: var(--bs-red);
}

@keyframes messageShow {
    0% {
        transform: translateY(-50px) scale(.7);
        opacity: .2;
    }

    80% {
        transform: translateY(5px) scale(1.08);
        opacity: .95;
    }
  
    100%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}


.logoSvg{
    width: auto;
    height: 35px;
}

.logoSvg text{
    font: 15.6px / 1.25 'SCRIPTBL';
    fill-opacity: 1;
    stroke-width: 0.7px;
    font-weight: 400;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 0% 32%;
    animation: stroke-offset 2s linear;
    animation-fill-mode: forwards;
    animation-delay: .35s;
}

.basicInput{
    display: block;
    min-width: 260px;
}

@keyframes stroke-offset {
    0% {
        stroke-dasharray: 0% 32%;
        fill:transparent;
    }
    42% {
        stroke-dasharray: 32% 0%;
        fill:transparent;
    }
    58%{
        stroke-dasharray: 32% 0%;
        fill:white;
    }
    100%{
        fill:white;
        stroke-dasharray: 0% 32%;
    }
}

@media (max-width: 350px){
    .navbar-brand{
        margin-right: 0.7rem
    }
    .logoSvg {
        width: 159px;
        margin-left: -5px;
    }
    .logoSvg text {
        font-size: 14.5px;
        font-weight: 300;
    }
}




/******Footer*****/
.cookieAgreed{
    z-index: 50;
    position: fixed;
    width: 100%;
    color: white;
    bottom: 0;
    font-size: smaller;
    display: flex;
    justify-content: center;
}

.cookieAgreed > div {
    background: var(--bs-primary);
    border-radius: 20px;
    padding: 5px;
}

.cookieAgreed > div > a{
    color: white;
}

.cookieAgreed > div > button{
    height: 25px;
    padding-top: 0;
    line-height: 20px;
}

.adsMainDiv{
    min-height:250px;
    margin-top:.5rem;
    margin-bottom:.5rem;
}