/*ÐÐ°Ñ‡Ð°Ð»Ð¾ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸*/
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Verdana, Arial;
    font-size: 15px;
    position: relative;
}

img {
    /*width: 100%;*/
    /* height: 100%; */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

ul {
    padding: 0;
}

li {
    list-style-type: none;
}

select {
    width: 100%;
    padding: 6px 5px;
    border-radius: 4px;
    border: 1px solid #c4c4c4;
}

a:hover,
a:focus,
a:active,
a:visited,
a:link {
    text-decoration: none;
}

.body {
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.logo-box {
    width: 100%;
    height: 50pt;
    background-color: #e4e4e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    position: relative;
    /*z-index: 20;*/
}

.head-btn {
    font-weight: 600;
    font-size: 15pt;
    margin: 0 50px 0 0;
    cursor: pointer;
}

a {
    color: black;
}

a:hover {
    color: black;
}

#forms {
    touch-action: manipulation;
    webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    flex: 1;
    background: white;
    min-width: 1000px;
}

#forms:-webkit-full-screen {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

#forms:-moz-full-screen {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

#forms:-ms-fullscreen {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

#forms:fullscreen {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

#forms>div {
    height: 100%;
    width: 100%;
    visibility: hidden;
}

#forms>div>div {
    padding: 10px;
    width: 100%;
    height: 100%;
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
}


.form-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.form-control {
    font-size: 12pt;
}

.form-btn-prim {
    min-width: 60pt;
}

.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
}

ul {
    margin-bottom: 0;
    list-style-type: none;
}

.form-content {
    height: calc(100% - 50px);
}


.modal-head i {
    margin: 0 5pt;
}

.modal-head .title {
    margin-left: 20px;
    flex-grow: 1;
    text-align: center;
}

.modal-head {
    height: 25pt;
    background-color: #fd7e14;
    border-radius: 5pt 5pt 0 0;
    padding: 0 5pt;
    color: white;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
}

.connect-img {
    background-image: url(../img/connect.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    display: none;
}

.form-group {
    position: relative;
    padding-left: 35px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.fw {
    width: 100%;
}

.mxw-100vmin {
    max-width: 100vmin;
}

.vert-fw {
    width: 100%;
    margin-bottom: 10px;
}

.vert {
    margin-bottom: 10px;
}

.pt {
    padding-top: 10px;
}

.pd-10 {
    padding: 10px;
}

.nopadding {
    padding: 0;
}

.nomargin {
    margin: 0;
}

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

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

.space-around {
    display: flex;
    justify-content: space-around;
}

.space-around-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.space-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-fe {
    align-items: flex-end;
}

.relative {
    position: relative;
}

.bottom {
    position: absolute;
    bottom: 0;
}

.h-100 {
    height: 100%
}

.end-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.start-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.center-start {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.fg-1 {
    flex-grow: 1;
}

.overflow-y-auto {
    overflow-y: auto;
}

.wrap {
    display: flex;
    flex-wrap: wrap;
}

.fl {
    display: flex;
}

.fd-c {
    flex-direction: column;
}

.fd-r {
    flex-direction: row !important;
}

.jc-sa {
    justify-content: space-around;
}

.jc-c {
    justify-content: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}


.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.w-25 {
    width: 25px;
}

.bold {
    font-weight: bold;
}


.modal-load {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /*z-index: 1300;*/
    background: rgba(255, 255, 255, 0.6);
    margin-left: -10px;
    margin-top: -10px;
}

.modal-load-fixed {
    position: absolute;
    width: 100%;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    height: 100%;
    /*z-index: 1300;*/
    background: rgba(255, 255, 255, 0.6);
    /* top: 150px; */
    /* left: 0; */
    /* align-items: center; */
}

.spinner-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #afeeee;
    border-top: 3px solid #6ac0f3;
    border-radius: 50%;
    animation: rotation 0.8s ease infinite;
    -webkit-animation: rotation 0.8s ease infinite;
    -moz-animation: rotation 0.8s ease infinite;
}

.modalWindow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #0000006b;
    display: flex;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.button-box {
    text-align: center;
}

.button {
    height: 7vh;
    min-height: 35px;
    border-radius: 8px;
    background-color: #005766;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 12pt;
}

.button-text {
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
}

.search {
    display: flex;
    width: 100%;
    justify-content: center;
}

.title-product {
    font-size: 14px;
    color: #5f5f5f;
    font-family: cursive;
    margin-bottom: 15px;
    font-weight: 500;
}

webkit-input-placeholder {
    color: #a5a5a5;
}

.form-header {
    width: 100%;
    height: 30pt;
    background-color: #0b484c;
    color: white;
    font-size: 15pt;
}

.form-body {
    width: 100%;
    /*height: calc(100% - 50pt);*/
    position: relative;
    padding: 0 10px;
}


.dark-button {
    display: table;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    letter-spacing: 1px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background-color: #288feb;
    text-decoration: none;
    margin: 5px;
}

.dark-button i {
    padding: 4px 5px;
}

.dark-button a {
    color: white;
    text-decoration: none;
}

.secondary-button {
    background: #afafaf;
}

.warning-button {
    background: #ff6b6b;
    ;
}

.light-button {
    color: #333;
    background-color: #fff;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    letter-spacing: 1px;
    border: none;
    text-transform: uppercase;
    display: table;
    padding: 0 15px;
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
    border-radius: 7px;
    cursor: pointer;
}

.btn-anim:hover {
    color: #fff;
    background: #f45e58;
}

.block-panel {
    background-color: #f5f5f5;
    border-radius: 10px;
}

.title-big {
    font-size: 40px;
}

.title-med {
    font-size: 30px;
}

.main-bkg {
    background-color: #288feb;
}

.site-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
}

.main-height {
    display: flex;
    align-items: center;
}

.footer-bkg {
    background-color: #ccc;
    height: 50px;
}

.title-logo {
    color: #FFF;
    font-weight: bolder;
    font-size: 22pt;
    display: flex;
    justify-content: flex-start;
}

.btn-box {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.remove {
    background: grey!important;
}

.obj-btn:hover {
    filter: brightness(80%);
}

.head .btn-box {
    justify-content: space-between;
    padding: 0 0 20px;
}

.obj-btn {
    color: white;
    background-color: #eb6822;
    padding: 10px 20px;
    min-width: fit-content;
    height: fit-content;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
}

.content-outer-box{
    display: flex;
    background-color: #00000061;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
    /*z-index: 100;*/
}

.content-inner-box{
    border: #bbbbbb 1px solid;
    color: black;
    background-color: white;
    border-radius: 5pt;
    width: 60%;
    height: 80%;
    min-width: 600px;
    min-height: 400px; 
    display: flex;
    flex-direction: column;
    padding: 0px !important;
    position: relative;
}

.content-box {
    border: #bbbbbb 1px solid;
    color: black;
    background-color: white;
    border-radius: 5pt;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0px !important;
    position: relative;
    /*z-index: 100;*/
}

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.content-body {
    width: 100%;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.content-body ul {
    padding: 10px;
    overflow-y: auto;
}

.content-body li {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 10px;
    background-color: #f1f1f1;
    align-items: center;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.game-item {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.game-item img {
    width: 106pt;
    height: 60pt;
}

.game-title {
    font-weight: bold;
}

.no-items {
    text-align: center;
    font-size: 15pt;
    color: silver;
}

.obj-btn .remove {
    margin: 0 0 0 10px;
    background-color: #898989;
}

.form-group-iconed {
    display: flex;
    align-items: center;
    margin-bottom: 10pt;
}

.form-group-iconed i {
    width: 5%;
}

.actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#formReg .dark-button {
    margin: 0;
    width: 40%
}

.modal-form {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10
}

.footer {
    padding: 0 10%;
    background-color: #15252e;
    justify-content: space-between;
    color: white;
    align-items: center;
    height: 50pt !important;
}

.foot-logo {
    font-size: 16pt;
    font-weight: bold;
}
/*
@media (max-width: 1201px) {

    .footer {
        padding: 0 20px;
    }

    .logo-box {
        padding: 0 20px;
    }

    .head-btn {
        font-size: 12pt;
        margin: 0 10px 0 0;
    }

    #forms>div>div {
        padding: 20px;
    }

    .weapon-box {
        width: 25.3vw;
    }
}*/

/*@media (max-width: 768px) {
    .obj-btn {
        padding: 8px 10px;
        margin: 0 5px 10px;
    }

    .modal-footer {
        flex-direction: column;
    }
}*/


.over-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    object-fit: cover;
    opacity: 0;
    z-index: 2;
}

.canvas {
    position: relative;
}

canvas {
    transition: opacity 0.3s;
}

.messageReg {
    color: red;
    text-align: center;
}

.divMessageReg {
    color: red;
    text-align: center;
}

.img-edit-setting {
    height: 50px;
    width: 50px;
    background-size: cover;
    background-position: center;
}

.highlight {
    background-color: #ff8100b8;
    border-radius: 5px;
    color: white;
}

@font-face {
    font-family: Pompadur;
    /* Имя шрифта */
    src: url(fonts/pompadur.ttf);
    /* Путь к файлу со шрифтом */
}

.header {
    font-size: 24px;
    font-weight: 600;
}

.unit-label {
    margin-top: -10pt;
    padding: 2px 5px;
    font-size: 10pt;
    color: lime;
    /*background: rgb(0 0 0 / 12%);
    border-radius: 3px;*/
}

.target-label {
    margin-top: -11pt;
    padding: 2px 5px;
    font-size: 12pt;
    color: white;
    /*background: rgb(0 0 0 / 12%);*/
    /*border-radius: 3px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

.target-label img {
    width: 30pt;
}

.target-label div {
    text-align: center;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #eb6822;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.modal-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.header-buttons {
    display: flex;
}

.header-caption {
    font-size: 16pt;
    font-weight: bold;
}