*{
    font-family: 'Proxima Nova Rg';
}

.container{
    width: 90%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    min-height: 100vh;
}

.container-dop {
    width: 100vw;
}

.bg-logo{
    background: url("/assets/images/logo_transparent.png") no-repeat center center;
    overflow: scroll;
}

.bg-logo-big{
    background: url("/assets/images/bg_fon_big.png") no-repeat center center;
    overflow: scroll;
}

body{
    margin: 0;
    overflow-x: hidden;
}

body::-webkit-scrollbar,.bg-logo::-webkit-scrollbar { width: 0; }

body,.bg-logo { -ms-overflow-style: none; }

body,.bg-logo { overflow: -moz-scrollbars-none; }

body.admin-body{
    overflow: auto;
}

.admin-body.bg-logo{
    overflow: auto;
}

.form-search{
    width: 100%;
    padding: 10px 10px;
    outline: none;
    font-size: 36px;
    border-radius: 10px;
    border: 1px solid rgba(24, 56, 55, 0.4);
    background: rgba(255, 255, 255, 0.16);
}

.form-search:focus{
    border: 1px solid #183837;
    background: white;
}

.btn{
    color: white;
    background-color: #36C5D8;
    border: none;
    padding: 10px 20px;
    font-size: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: .3s;
}

.btn:hover{
    background-color: #7ee2e7;
}

.btn:active{
    background-color: #183837;
}

.hint{
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 9;
}

.hint-item{
    padding: 10px;
    background-color: white;
    cursor: pointer;
    border-bottom: 1px solid rgba(24, 56, 55, 0.4);
    border-left: 1px solid rgba(24, 56, 55, 0.4);
    border-right: 1px solid rgba(24, 56, 55, 0.4);
}

.hint-item:first-child{
    border-top: 1px solid rgba(24, 56, 55, 0.4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hint-item:last-child{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hint-item--title{
    font-weight: 700;
    font-size: 24px;
}

.hint-item--description{
    color: #98989E;
}

.hint-item:hover{
    background-color: #f3f3f3;
    border-bottom: 1px solid rgba(24, 56, 55, 1);
    border-left: 1px solid rgba(24, 56, 55, 1);
    border-right: 1px solid rgba(24, 56, 55, 1);
}

.hint-item:first-child:hover{
    border-top: 1px solid rgba(24, 56, 55, 1);
}

.icon-right{
    font-size: 36px;
    color: #98989E;
}

.link{
    text-decoration: none;
    color: #0050f3;
}

.link:hover{
    text-decoration: none;
    color: rgba(0, 80, 243, 0.51);
}

.link-danger{
    text-decoration: none;
    color: #f30001;
}

.link-danger:hover{
    text-decoration: none;
    color: rgba(243, 0, 1, 0.52);
}

.table{
    border: 1px solid #eee;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 20px;
}
.table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}
.table td{
    padding: 5px 10px;
    border: 1px solid #eee;
    text-align: left;
}
.table tbody tr:nth-child(odd){
    background: #fff;
}
.table tbody tr:nth-child(even){
    background: #F7F7F7;
}
.pt-45vh{
    padding-top: 45vh;
}
.subcontainer{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}
.all-points__item{
    width: 100%;
    transition-duration: .3s;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}
.all-points__item:hover{
    background-color: #e7e7f0;
}
.all-points__title{
    font-size: 24px;
    font-weight: 700;
}
.all-points__item{
    display: flex;
    align-items: center;
}
.all-points__icon{
    margin-right: 15px;
    font-size: 25px;
}

@media screen and (max-width: 800px){
    body{
        overflow: auto;
    }
    .hint{
        top: 235%;
    }
    .hint-item{
        background-color: rgba(255, 255, 255, 0.8);
    }
    .m-pt-0{
        padding-top: 0;
    }
}