@charset "utf-8";


/* Standart */
.rub {
    font-size: 10px;
    color: #163132;
}

.img {
    -webkit-filter: drop-shadow(0px 5px 5px #222);
    filter: drop-shadow(10px 9px 30px #ffff);
    transition: .3s;
}

.page_nav {
    letter-spacing: 1.1px;
    text-align: left;
    background-color: #ffffffde;
    color: #2f2f2f;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    padding-left: 20px;
    box-shadow: 2px 3px 5px -3px rgb(0 0 0 / 61%);
}


.mylink:link, .mylink:active, .mylink:visited {color:#333; text-decoration:none;}
.mylink:hover {color:#000000; border-bottom:3px dashed #666666}

.nav_str{ font-weight:bold;}
.nav_str a {
    background-color: #ffffff;
    color: #38858b;
    padding: 3px 12px;
    margin-right: 3px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: 5px solid #f9f9f9;
    display: inline-table;
	text-decoration:none
}
.nav_str a:hover{ background-color:#F9F9F9}

.page_info {
    letter-spacing: 1.1px;
    text-align: left;
    background-color: #effcfc;
    color: #2f2f2f;
    line-height: 25px;
    padding: 12px;
    margin-bottom: 24px;
    border: 1px solid #4aaaad;
    border-radius: 5px;
    padding-left: 20px;
    box-shadow: 2px 3px 5px -3px rgb(0 0 0 / 61%);
    background-image: url(../img/fon/1.png);
}

.page_title {
    cursor: default;
    background-color: #3fc2c557;
    color: #2d2d2d;
    /* border: 1px solid #3c3c3c; */
    margin-bottom: 30px;
    height: 35px;
    line-height: 35px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    /* text-shadow: 1px 1px 0px #d8d8d8; */
    text-align: center;
    /* border-radius: 3px; */
    /* border-bottom: 3px solid #424242; */
}


/* BOOTSTRAP FORM STYLE OVERRIDES - "FLUID DEPTH" EDITION */

:root {
    --form-base-bg: #fdfdfd;
    --form-border-color: #e0e0e0;
    --form-text-color: #4a4a4a;
    --form-placeholder-color: #a0a0a0;
    --form-focus-border: #6c5ce7;
    --form-focus-shadow-1: rgba(108, 92, 231, 0.2);
    --form-focus-shadow-2: rgba(108, 92, 231, 0.1);
    --form-addon-bg: #f0f0f0;
    --form-icon-color: #7f8c8d;
}

.form-control {
    height: 55px;
    background-color: var(--form-base-bg);
    font-weight: 400;
    color: var(--form-text-color);
    border: 1px solid var(--form-border-color);
    border-radius: 12px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05),
                inset 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.4, 1.0);
    padding: 0.9rem 1.2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    will-change: transform, box-shadow;
}

.form-control:focus {
    border-color: var(--form-focus-border);
    background-color: #ffffff;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1),
                0 0 0 4px var(--form-focus-shadow-1),
                0 0 0 8px var(--form-focus-shadow-2);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--form-placeholder-color);
    font-weight: 300;
}

.input-group2 .form-control {
    height: 55px;
    font-weight: bold;
}

.input-group2 .form-select {
    height: 55px;
    font-weight: bold;
    background-color: var(--form-base-bg);
    border: 1px solid var(--form-border-color);
    border-radius: 12px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05),
                inset 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.4, 1.0);
    padding-right: 3rem;
    color: var(--form-text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    will-change: transform, box-shadow;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237f8c8d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 18px 14px;
}

.input-group2 .form-select:focus {
    border-color: var(--form-focus-border);
    background-color: #ffffff;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1),
                0 0 0 4px var(--form-focus-shadow-1),
                0 0 0 8px var(--form-focus-shadow-2);
    outline: none;
    transform: translateY(-2px);
}

.input-group2 .input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--form-icon-color);
    background-color: var(--form-addon-bg);
    border: 1px solid var(--form-border-color);
    border-radius: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease-out;
    min-width: 65px;
    cursor: default;
}

.input-group2 .input-group-text i {
    font-size: 26px;
    color: var(--form-icon-color);
}

.input-group2 .input-group-text:hover {
    background-color: #e6e6e6;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.input-group2 .form-control:not(:first-child):not(:last-child),
.input-group2 .form-select:not(:first-child):not(:last-child),
.input-group2 .input-group-text:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group2 .form-control:first-child,
.input-group2 .form-select:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group2 .input-group-prepend:first-child .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group2 .form-control:last-child,
.input-group2 .form-select:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group2 .input-group-append:last-child .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group2 .form-control:first-child:last-child,
.input-group2 .form-select:first-child:last-child {
    border-radius: 12px;
}
.input-group2 .input-group-text:first-child:last-child {
    border-radius: 12px;
}
.input-group2 .input-group-prepend + .form-control,
.input-group2 .input-group-prepend + .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-control + .input-group-append .input-group-text,
.form-select + .input-group-append .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/**/
.btn2 {
    line-height: 1.0;
    height: 40px;
    min-width: 150px;
    box-shadow: 0px 0px 3px 0px #261e1c61;
    border: 0;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .3s;
}
	
.btn-dark {
	background-color:#636363d1;
	border-color: #636363;
}
.btn-dark:hover {
	background-color:#2A2A2A;
}


.btn-primary {
	background-color:#0f586d61;
	border-color: #0a58ca;
}
.btn-primary:hover {
	background-color:#0f586d;
}


.btn-success {
	background-color:#00a71a;
}
.btn-success:hover {
	background-color:#008647;
}


.btn-warning {
	background-color:#0f5b00;
	border-color: #0f5b00;
	color:#FFFFFF;
}
.btn-warning:hover {
	background-color:#199800;
}


.btn-danger {
	background-color:#b92d3bbd;
}
.btn-danger:hover {
	background-color:#b92d3b;
}


.btn-light {
	background-color:#ffffffb5;
}
.btn-light:hover {
	background-color:#e4e4e4;
}

/*ANIM*/
.zoom {
 -moz-transition: all 0.1s ease-out;
 -o-transition: all 0.1s ease-out;
 -webkit-transition: all 0.1s ease-out;
 transition: all 0.1s ease-out;
 }
.zoom:hover{
 -webkit-transform: scale(1.1);
 -moz-transform: scale(1.1);
 -o-transform: scale(1.1);
 transform: scale(1.1);
 }
 
.lin {
animation-duration: 5s;
animation-iteration-count: infinite;
animation-name: lin;
animation-timing-function: linear;
}
@keyframes lin {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(5px); }
	100% { transform: translateY(0); }
}

.rotating {
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/*Таблица стилий*/
#tab{ text-align:left}
#tab tr {
    height: 45px;
    color: #252525;
    border-bottom: 1px solid #258688;
}

#tab td{ padding-left:15px;}

#tab .tab_name {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: #155f61;
}
#tab .tab_title{background-color:#258688; height:40px; color:#FFFFFF}
