html {
  height: 100%;
  margin-bottom: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

form {
  margin: 0;
  padding: 0;
}

body {
	font-family: Helvetica,Arial,sans-serif;
	line-height: 1.2;
	margin-top: 10px;
	margin-bottom: 150px;
	font-size: 14px;
	color: #333;
	background: #E5E5E5;
}

a:link, a:visited {
	text-decoration: none;
	font-weight: normal;
}

a:hover {
	text-decoration: underline;
	font-weight: normal;
}

input.button { cursor: pointer; }

p { margin-top: 0; margin-bottom: 5px; }

img { border: 0 none; }


/*  ---------Базовые стили для таблиц ------------ */

.dtable {
	width: 100%;
    border: 1px solid #d4d4d4;
    border-collapse: collapse;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 30px;
}

@media (max-width: 620px) {
    .dtable-wrapper {
        width: 100%;
        overflow-x: scroll;
    }
}

.dtable th {
    padding: 15px 5px;
    text-align: center;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    border: 1px solid #d4d4d4;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
}

.dtable tr:hover {
    background-color: #eaf7ff;
    color: #0c3a6d;
}

.dtable td {
    padding: 5px;
    border: 1px solid #d4d4d4;
}


.dbutton {
	background-color: #fff;
    margin: 5px 5px;
    font-size: 20px;
    padding: 10px;
    border: 1px solid #3d8ecf;
    border-radius: 5px;
    cursor: pointer;
}

.dbutton:hover,
.dbutton:focus {
	background-color: #3d8ecf;
    color: #fff;
}

.dsubmit-btn {
	font-size: 140%;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .7em 20px;
    margin-bottom: 30px;
    border: 1px solid;
    border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
    border-radius: 6px;
    outline: none;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;
}

.dsubmit-btn:hover,
.dsubmit-btn:focus {
	color: rgb(255,255,255);
    background-image: linear-gradient(#9dc7e7, #74afdd 50%, #378bce);
}

.dinput {
	font-size: 30px;
    padding: 5px 15px;
    border: 1px solid #3d8ecf;
    border-radius: 5px;
}

.ads-big-block {
	display:block;
	margin: 0 auto;
	width: 100%;
    max-width: 818px;
}

@media (max-width: 1035px) {
	 .ads-big-block {
	 	width: 700px;
	 }
}

@media (max-width: 965px) {
	 .ads-big-block {
	 	width: 600px;
	 }
}

@media (max-width: 845px) {
	 .ads-big-block {
	 	width: 500px;
	 }
}

@media (max-width: 754px) {
	 .ads-big-block {
	 	width: 100%;
	 }
}

/* Зона ожидания в момент расчета калькулятора */
.waiting__zone {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-full-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.d__inputs-area {
    padding: 20px 30px;
    border: 1px solid #e6e4e4;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 5px;
}

.d__inputs-zone {
    display: flex;
    justify-content: center;
}

@media (max-width: 500px) {
    .d__inputs-zone {
        flex-direction: column;
    }
}

.d__input-zone {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d__input-zone--radio {
    margin: 0 10px;
}

@media (max-width: 500px) {
    .d__input-zone--radio{
        width: 100%;
        margin: 5px 0;
    }
}

/* Кнопки для инпутов в виде радиобаттонов */
.d__input--radio {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
}

.d__input--radio:checked + label {
    color: white;
    background: rgb(73,155,234); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(73,155,234,1) 0%,rgba(32,124,229,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(73,155,234,1) 0%,rgba(32,124,229,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5',GradientType=0 ); /* IE6-9 */
    border: 2px solid black;
}

.d__input-zone--radio label {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid rgb(204, 203, 203);
    border-radius: 5px;
    font-size: 20px;
    background-color: white;
    cursor: pointer;
}


.d__input-zone--radio label:hover,
.d__input-zone--radio label:focus {
    background-color: #3d8ecf;
    color: #fff;
}

/* Кнопка отправить форму */
.d__submit-btn-zone {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.d__submit-btn {
    font-size: 140%;
    margin-bottom: 15px;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .7em 20px;
    border: 1px solid;
    border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
    border-radius: 6px;
    outline: none;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;
}

.d__submit-btn:hover,
.d__submit-btn:focus { 
    color: rgb(255,255,255);
    background-image: linear-gradient(#9dc7e7, #74afdd 50%, #378bce);
}


/*Кнопки навигации*/
.nav-btn {
    border: 1px solid #e6e4e4;
    border-radius: 5px;
    padding: 7px 10px;
    color: gray;
    background-color: transparent;
    font-size: 13px;
    width: auto;
    margin-right: 5px;
    margin-bottom: 5px;
}

.nav-btn:focus, 
.nav-btn:hover {
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
}

/*  ---------Конец базовых стилей ------------ */



/****************************************************************/
/*** Остатки старого *********************************************/
/*******************************************************************/

/* blue */
a:link, a:visited {
	color: #135cae;
}

a:hover {
	color: #0b3768;
}

#pillmenu a:hover {
  color: #135cae;
}

#pillmenu a#active_menu-nav {
  background: url(../images/blue/mw_menu_active_bg.png) repeat-x;
  color: #fff;
}

#pillmenu a#active_menu-nav:hover {
  color: #fff;
}

h3, .componentheading, table.moduletable th {
  color: #000;
}

div.module_menu {
	background: url(../images/blue/mw_box_br.png) 100% 100% no-repeat;
}

div.module_menu div {
	background: url(../images/blue/mw_box_bl.png) 0 100% no-repeat;
}

div.module_menu div div {
	background: url(../images/blue/mw_box_tr.png) 100% 0 no-repeat;
}

div.module_menu div div div {
	background: url(../images/blue/mw_box_tl.png) 0 0 no-repeat;
}

/* Form validation */
.invalid { border-color: #ff0000; }
label.invalid { color: #ff0000; }

/* Buttons */
#editor-xtd-buttons {
	padding: 5px;
}

.button2-left,
.button2-right,
.button2-left div,
.button2-right div {
	float: left;
}

.button2-left a,
.button2-right a,
.lex{background:url(https://calko.ru/images/pdd-online/fon2.png) no-repeat;
background-size: cover;
height:45px;
width:545px;
cursor:pointer;
padding:0 7px; 
}
.button2-left span,
.button2-right span {
	display: block;
	height: 22px;
	float: left;
	line-height: 22px;
	font-size: 11px;
	color: #666;
	cursor: pointer;
}

.button2-left span,
.button2-right span {
	cursor: default;
	color: #999;
}

.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span {
	padding: 0 6px;
}

.page span {
	color: #000;
	font-weight: bold;
}

.button2-left a:hover,
.button2-right a:hover {
	text-decoration: none;
	color: #0B55C4;
}

.button2-left a,
.button2-left span {
	padding: 0 24px 0 6px;
}

.button2-right a,
.button2-right span {
	padding: 0 6px 0 24px;
}

.button2-left {
	background: url(../images/j_button2_left.png) no-repeat;
	float: left;
	margin-left: 5px;
}

.button2-right {
	background: url(../images/j_button2_right.png) 100% 0 no-repeat;
	float: left;
	margin-left: 5px;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

.button2-left .blank {
	background: url(../images/j_button2_blank.png) 100% 0 no-repeat;
}

/* Tooltips */
div.tooltip {
	float: left;
	background: #ffc;
	border: 1px solid #D4D5AA;
	padding: 5px;
	max-width: 200px;
	z-index:13000;
}

div.tooltip h4 {
	padding: 0;
	margin: 0;
	font-size: 95%;
	font-weight: bold;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
	background: url(../images/selector-arrow.png) no-repeat;
}

div.tooltip p {
	font-size: 90%;
	margin: 0;
}

/* Caption fixes */
.img_caption.left {
	float: left;
	margin-right: 1em;
}

.img_caption.right {
	float: right;
	margin-left: 1em;
}

.img_caption.left p {
	clear: left;
	text-align: center;
}

.img_caption.right p {
	clear: right;
	text-align: center;
}

.img_caption  {
text-align: center!important;
}

.img_caption.none {
	margin-left:auto;
	margin-right:auto;
}

.caption.left {
	float: left;
	margin-right: 1em;
}

.caption.right {
	float: right;
	margin-left: 1em;
}

.caption.left p {
	clear: left;
	text-align: center;
}

.caption.right p {
	clear: right;
	text-align: center;
}

.caption.none {
	margin-left:auto;
	margin-right:auto;
}

.caption  {
	text-align: center!important;
}

/* Calendar */
a img.calendar {
	width: 16px;
	height: 16px;
	margin-left: 3px;
	background: url(../images/calendar.png) no-repeat;
	cursor: pointer;
	vertical-align: middle;
}

/****************************************************************/
/*** New beatiful world *********************************************/
/*******************************************************************/

.footer-contact {
	padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
}

.footer-contact img {
	opacity: 0.6;
}

.wrapper {
    max-width: 1052px;
    min-width: 320px;
	margin-left: auto;
	margin-right: auto;
	background: #f7f7f7;
	border-radius: 0px;
	-webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.3);
-moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.3);
box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.3);
}

.main-header {
    height: 55px;
    padding-left: 20px;
    background: #499bea;
    background-image: url(/images/header-bg-2018.png), linear-gradient(to bottom, #499bea 0%,#207ce5 100%);
    background-repeat: no-repeat;
    background-position: top right;
}

.main-header__logo {
    display: block;
    width: 224px;
    height: 54px;
    background: url(/images/logo2018.png) 0 0 no-repeat;
}

.main-header__logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.main-header__banners {
    width: 100%;
    display: flex; 
    justify-content: space-between;
}

@media (max-width: 980px) {
    .main-header__banners {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.main-header__pdd-banner,
.main-header__alcotester-banner {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 754px) {
    .main-header__pdd-banner img,
    .main-header__alcotester-banner img {
        width: 100%;
    }
}

.main-header__pdd-banner:hover,
.main-header__pdd-banner:focus,
.main-header__alcotester-banner:hover,
.main-header__alcotester-banner:focus {
    opacity: 0.7;
}

/* ---------------Блок главных статей --------------------*/

.main-articles {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.main-articles__wrapper {
    display: flex;
    padding: 10px;
    box-sizing: inherit;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .main-articles__wrapper {
        flex-wrap: wrap;
    }
}

.main-articles__left-part {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
}

@media (max-width: 724px) {
    .main-articles__left-part {
        flex-direction: column;
    }
}

.main-articles__right-part {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 1052px) {
    .main-articles__right-part {
        width: 150px;
    }
}

@media (max-width: 900px) {
    .main-articles__right-part {
        margin-top: 10px;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }
}

.main-articles__link {
    display: flex;
    position: relative;
}

@media (max-width: 1052px) {
    .main-articles__right-part .main-articles__link:nth-child(3),
    .main-articles__right-part .main-articles__link:nth-child(4) {
        display: none;
    }
}

@media (max-width: 900px) {
    .main-articles__right-part .main-articles__link:nth-child(3),
    .main-articles__right-part .main-articles__link:nth-child(4) {
        display: block;
    }
}

@media (max-width: 655px) {
    .main-articles__right-part .main-articles__link:nth-child(4) {
        display: none;
    }
}

@media (max-width: 509px) {
    .main-articles__right-part .main-articles__link:nth-child(3) {
        display: none;
    }
}

@media (max-width: 370px) {
    .main-articles__right-part .main-articles__link {
        display: none;
    }
}

.main-articles__left-part .main-articles__link {
    margin-right: 10px;
}

.main-articles__right-part .main-articles__link {
    margin-left: 5px;
}

@media (max-width: 900px) {
    .main-articles__left-part .main-articles__link {
        margin-right: 0;
    }

    .main-articles__right-part .main-articles__link {
        margin-left: 0;
    }
}

@media (max-width: 724px) {
    .main-articles__left-part .main-articles__link {
        width: 100%;
        display: flex;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 1.2;
        background-color: #0170bf;
    }

    .main-articles__left-part .main-articles__link img {
        height: 100px;
    }
}

@media (max-width: 420px) {
    .main-articles__left-part .main-articles__link {
        font-size: 14px;
    }
}

.main-articles__link-text-area {
   position: absolute;
   bottom: 0;
   left: 0;
   background: rgba(0, 0, 0, 0.7);
   color: #fff;
   padding: 0 5px;
}

@media (max-width: 724px) {
    .main-articles__left-part .main-articles__link-text-area {
        position: relative;
        flex-grow: 1;
        padding-left: 15px;
        padding-top: 20px;
        background-color: #0170bf;
        align-self: center;
    }
}

@media (max-width: 420px) {
    .main-articles__left-part .main-articles__link-text-area {
        padding-top: 5px;
    }
}

.main-articles__link-text {
    color: #0390f5;
}

/* ---------------Конец блока главных статей --------------------*/

.content-wrapper {
    padding-top: 10px;
    margin: 0 11px;
}

.whitebox {
    margin: 10px;
    padding: 10px;
    background: #fff;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 0px; 
}

@media (max-width: 1000px) {
    .whitebox {
       overflow: scroll;
    }
}

@media (max-width: 520px) {
	.whitebox {
		margin: 10px 0;
	}
}


.maincolumn {
    width: 100%;
	margin-left: 0;
    padding: 0;
    position: relative;
	
	display: -webkit-box;
	
	display: -ms-flexbox;
	
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}

/* -------------------MAINCOLUMN BUTTON */

.maincolumn__button {
    display: none;
    position: absolute;
    right: 0;
    font: inherit;
    overflow: visible;
    margin: 0;
    margin-left: auto;
    margin-bottom: 9px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    outline: none;
    background-color: transparent;
}


@media (max-width: 754px) {
    .maincolumn__button {
        display: inline-block;
    }
}

.maincolumn__button:hover,
.maincolumn__button:focus {
    opacity: .7;
}

.maincolumn__button-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.maincolumn__button-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.maincolumn__button-inner, 
.maincolumn__button-inner:after, 
.maincolumn__button-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    /* background-color: #000; */
}

.maincolumn__button-inner:after, 
.maincolumn__button-inner:before {
    display: block;
    content: "";
}

.maincolumn__button-inner:before {
    top: -10px;
}

.maincolumn__button-inner:after {
    bottom: -10px;
}

.maincolumn__button-inner, 
.maincolumn__button-inner:after, 
.maincolumn__button-inner:before {
    background-color: #8b2121;
}

.maincolumn__button--collapse .maincolumn__button-inner {
    top: auto;
    bottom: 0;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s;
}

.maincolumn__button--collapse .maincolumn__button-inner:before {
    transition: 
        top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,
        transform .13s cubic-bezier(.55,.055,.675,.19);
}

.maincolumn__button--collapse .maincolumn__button-inner:after {
    top: -20px;
    transition: 
        top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,
        opacity .1s linear;
}


.maincolumn__button--collapse.is-active .maincolumn__button-inner {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(-45deg);
}

.maincolumn__button--collapse.is-active .maincolumn__button-inner:before {
    top: 0;
    transition: 
        top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,
        transform .13s cubic-bezier(.215,.61,.355,1) .25s;
    transform: rotate(-90deg);
}

.maincolumn__button--collapse.is-active .maincolumn__button-inner:after {
    top: 0;
    transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
    opacity: 0;
}

/* -------------------///// MAINCOLUMN BUTTON */

.maincolumn__left {
   width: 100%;
   max-width: 818px;
   flex-grow: 1;
   border-right: 1px solid #e6e4e4; 
   margin-right: 10px;
}

@media (max-width: 754px) {
    .maincolumn__left {
        border: none;
        margin-right: 0;
        padding-top: 15px;
    }
}

.maincolumn__title {
  font-size: 1.8em;
    margin: 0.67em 0;
 
}

.maincolumn__content {
    display: block;
    width: 100%;
}

@media (max-width: 520px) {
    .maincolumn__content img {
        width: 100%;
    }
}

.maincolumn__right {
    width: 172px;
}

@media (max-width: 754px) {
    .maincolumn__right {
        display: none;
        position: absolute;
        top: 40px;
        right: 0px;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 4px;
        text-align: center;
    }

    .maincolumn__right--visible {
        display: block;
    }
}

.main-footer {
    height: 54px;
	
}

.article-header {
    width: 100%;
    background-color: #5f8cc8;
    border-radius: 10px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (max-width: 595px) {
    .article-header {
        flex-direction: column;
    }
}

.article-header__img-zone {
    display: block;
    width: 200px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

.article-header__text-zone {
    min-height: 100px;
    padding: 10px 20px;
    -ms-flex-item-align: center;
        align-self: center;
    background: url(https://calko.ru/images/fon-articles.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    text-indent: 25px;
    font-weight: bold;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* вернуться в каталог */
.cveta-back {
    text-align: center!important;
}

.cveta-back a {
  display: block;
  padding: 25px 40px;
  font-size: 20px;
  text-decoration: none;
  background: linear-gradient(113.80436209453319deg, rgba(236, 236, 236,1) 4.927083333333334%,rgba(195, 229, 248,1) 97.84374999999999%);
  margin-bottom: 10px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
  border: 1px solid #0c3a6d;
}

.cveta-back a:hover,
.cveta-back a:focus {
  color: white;
  font-size: 22px;
  background: linear-gradient(113.80436209453319deg, rgba(1, 96, 186,1) 4.927083333333334%,rgba(0, 0, 0,1) 97.84374999999999%);
  text-decoration: none;
}

/* стиль дива под изображения в цветах */
.cveta-img {
    width: 100%;
    text-align: center!important;
    margin-top: 10px;
}

/* стиль для основных изображений в цветах */
.cveta-img img {
   border: 1px solid black;
   margin-bottom: 10px;
   max-width: 780px;
}

/* стиль для перелинковки в цветах */
.cveta-perelink  {
    width: 100%;
    text-align: center!important;
}

.cveta-perelink-item {
    display:inline-block;
    position:relative;
    margin: 10px;
}

.cveta-perelink-link {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.50);
    width: 300px;
    padding: 7px 0px; 
    text-decoration: none;
}

@media (max-width: 595px) {
    .cveta-perelink-link {
        width: 100%;
    }
}

.cveta-perelink-link:hover {
    text-decoration: none;
}


.cveta-perelink  img{
    width: 300px;
}

@media (max-width: 595px) {
    .cveta-perelink  img{
        width: 100%;
    }
}

.cveta-perelink  img:hover{
    opacity: 0.7;
}

.cveta-model-promo {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center!important;
}

.cveta-model-promo__link {
    width: 24%;
    position: relative;
}

.cveta-model-promo__name {
    position: absolute;
    top: 0;
}

@media (max-width: 595px) {
    .cveta-model-promo__link {
        width: 100%;
    }
}

.cveta-model-promo__link img {
    width: 100%;
}

.cveta-model-promo img:hover{
    opacity: 0.7;
    border: 1px solid black;
}

.cveta-avtovaz__promo-banner {
    width: 100%;
    text-align: center;
}

.cveta-avtovaz__promo-banner img {
    border: 1px solid black;
}

.cveta-avtovaz__promo-banner:hover,
.cveta-avtovaz__promo-banner:focus {
    opacity: 0.8;
}



/*ЭКЗАМЕН ПДД ОНЛАЙН*/


@media (max-width: 520px) {
    .pdd-online__pagination {
        margin-top: 20px;
    }
    
    .pdd-online__pagination img {
        width: auto;
    }
}

.pdd-online__intro {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.pdd-online__intro-img {
    margin-right: 20px;
}

@media (max-width: 595px) {
    .pdd-online__intro {
        display: flex;
        flex-direction: column;
    }
}

.pdd-online__intro-text {
   text-indent: 25px; 
}

.pdd-online__examen-link {
    display: block;
    padding: 30px;
    line-height: 1.2;
    color: white!important;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    width: 350px;
    margin: 30px auto;
    text-align: center;
    border: 5px solid #a4a4a7;
    border-radius: 20px;
    
    background: rgb(30,87,153); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}

@media (max-width: 595px) {
    .pdd-online__examen-link {
        width: 100%;
    }
}

.pdd-online__examen-link:hover,
.pdd-online__examen-link:focus {
    text-decoration: none;
    border: 5px solid #97d2fb;
    
    background: rgb(53,106,160); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(53,106,160,1) 0%, rgba(53,106,160,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(53,106,160,1) 0%,rgba(53,106,160,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(53,106,160,1) 0%,rgba(53,106,160,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#356aa0', endColorstr='#356aa0',GradientType=0 ); /* IE6-9 */
}

.pdd-online__choice {
    width: 100%;
}

.pdd-online__choice-table-zone {
    display: block;
    width: 100%;
}

@media (max-width: 595px) {
 .pdd-online__choice-table-zone {
	overflow-x: scroll;
 }
}

.pdd-online__choice-table {
    margin: 20px auto;
    
    background: #499bea; /* Old browsers */
    background: -moz-linear-gradient(top, #499bea 0%, #207ce5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #499bea 0%,#207ce5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #499bea 0%,#207ce5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5',GradientType=0 ); /* IE6-9 */
    
    border-collapse: collapse;
}   

.pdd-online__choice-td {
    border: 1px solid #080808;
}

.pdd-online__choice-td:hover, 
.pdd-online__choice-td:focus   {
    border: 1px solid white;
}

.pdd-online__choice-link {
    display: block;
    padding: 13px 25px;
    color: #ecebeb!important;
    font-size: 20px;
    text-decoration: none;
}

.pdd-online__choice-link:hover,
.pdd-online__choice-link:focus { 
    background: rgb(44,83,158); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(44,83,158,1) 0%, rgba(44,83,158,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c539e', endColorstr='#2c539e',GradientType=0 ); /* IE6-9 */
    
    text-decoration: none;
    transition: .2s ease-in-out;
}

.pdd-online__choice-random-link {
    display: block;
    width: 300px;
    border: 1px solid black;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    padding: 13px 25px;
    color: #ecebeb!important;
    font-size: 20px;
    text-decoration: none;
    
    background: #499bea; /* Old browsers */
    background: -moz-linear-gradient(top, #499bea 0%, #207ce5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #499bea 0%,#207ce5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #499bea 0%,#207ce5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5',GradientType=0 ); /* IE6-9 */
}

.pdd-online__choice-random-link:hover,
.pdd-online__choice-random-link:focus { 
    background: rgb(44,83,158); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(44,83,158,1) 0%, rgba(44,83,158,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c539e', endColorstr='#2c539e',GradientType=0 ); /* IE6-9 */
    
    text-decoration: none;
    transition: .2s ease-in-out;
}

@media (max-width: 595px) {
    .pdd-online__choice-random-link {
        width: 100%;
    }
}

.pdd-online__textarea {
    width: 650px; 
    height:20px; 
    border: 1px solid #cccccc; 
    margin-top:2px;
}

@media (max-width: 650px) {
    .pdd-online__textarea {
        width: 100%;
        height: 70px;
    }
}

.pdd-online__next-zone {
	display: flex;
    justify-content: space-around;
    width: 100%;
}

.pdd-online__next-link {
	display: block;
	position: relative;
    padding: 15px 0;
    margin-bottom: 10px;
    font-size: 18px;
    background-color: #f4f4f5;
    width: 40%;
    text-align: center;
}

.pdd-online__next-link:hover,
.pdd-online__next-link:focus {
	border: 1px solid #135cae;
	text-decoration: none;
}

.pdd-online__arrow {
	cursor: pointer;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    width: 15px;
}

.pdd-online__arrow--prev {
	right: 0;
    left: 10px;
    transform: rotate(180deg);
}

.pdd-online__arrow-top,
.pdd-online__arrow-bottom {
	background-color: #bfbfbf;
    height: 4px;
    left: -5px;
    position: absolute;
    top: 50%;
    width: 100%;
}

.pdd-online__arrow-top {
	transform: rotate(45deg);
    transform-origin: bottom right;
}

.pdd-online__arrow-bottom {
	transform: rotate(-45deg);
    transform-origin: top right;
}

.pdd-online__next-link:hover .pdd-online__arrow-top,
.pdd-online__next-link:hover .pdd-online__arrow-bottom,
.pdd-online__next-link:focus .pdd-online__arrow-top,
.pdd-online__next-link:focus .pdd-online__arrow-bottom {
	background-color: #135cae;
}

.bilet {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
    padding: 30px 0;
}

.bilet__title {
    font-size: 35px;
    line-height: 1.2;
    margin: 0;
    margin-top: 20px;
    margin-right: 5px;
    padding: 5px;
    background: #388ee8;
    color: white;
    border: 1px solid #cccccc;
}

.bilet__upline {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bilet__qs-num-list {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
    padding: 0 60px;
    flex-wrap: wrap;
}

@media (max-width: 650px) {
    .bilet__qs-num-list {
        padding: 0;
        justify-content: space-between;
    }
}

.bilet__img-zone {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.bilet__question {
    text-indent: 55px;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.bilet__qs-num-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #B0B0B0;
    background-color: #fff;
    outline: none;
}

.bilet__qs-num-btn--active {
    border: 3px solid rgb(30, 2, 188);
    transition: .2s ease-in-out;
}

.bilet__qs-num-btn:hover,
.bilet__qs-num-btn:focus {
    box-shadow: 0px 0px 17px 1px rgba(0,0,0,0.55);
}

.bilet__answer-list {
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}


.bilet__answer-item {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.bilet__answer-btn {
    width: 100%;
    font-size: 16px;
    margin-left: 15px;
    padding: 15px 15px;
    border: 1px solid rgb(209, 208, 208);
    background-color: transparent;
    border-radius: 5px;
}

.bilet__answer-btn:hover,
.bilet__answer-btn:focus {
    background-color: rgb(243, 242, 242);
}

.bilet__down-btns {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.bilet__next-btn {
    padding: 15px 50px;
    border-radius: 5px;
    background-color: #e5e5e5;
    border: 1px solid #b4b3b3;
}

.bilet__next-btn:hover,
.bilet__next-btn:focus {
    border: 1px solid rgb(7, 7, 7);
    background-color: #c2c2c2;
    transition: .2s ease-in-out;
    outline: none;
}

.bilet__hint-btn {
    background-color: transparent;
    border: 1px solid #b4b3b3;
    border-radius: 5px;
}

.bilet__hint-btn:hover,
.bilet__hint-btn:focus {
    border: 1px solid rgb(246, 0, 0);
    transition: .2s ease-in-out;
    outline: none;
}

.bilet__hint {
    margin: 30px;
    padding: 15px;
    border: 1px solid #0301a9;
    border-radius: 5px;
}

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

.bilet__restart-btn {
    color: rgb(2, 2, 121);
    font-size: 16px;
    margin: 0 10px;
    padding: 0;
    background-color: transparent;
    border: none;
    text-decoration: none;
    outline: none;
}

.bilet__rezult {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.bilet__rezult-text {
    border: 1px solid #b4b3b3;
    border-radius: 5px;
    font-size: 22px;
    padding: 10px 25px;
    margin: 10px 0;
}

.bilet__restart-btn:hover,
.bilet__restart-btn:focus {
    text-decoration: underline;
}

.bilet__err-bilets-name {
    font-size: 25px;
    font-weight: bold;
    margin-left: 15px;
    color: #0404a5;
    line-height: 40px;
}

.bilet__repeat-err-qs-zone {
    width: 100%;
    text-align: center;
}

.bilet__rezults-err-zone {
    padding-top: 20px;
}

.bilet__repeat-err-qs {
    color: #fff;
    font-size: 20px;
    padding: 15px 50px;
    border-radius: 5px;
    background-color: #001c59;
    border: 1px solid #b4b3b3;
    margin-bottom: 40px;
}

.bilet__repeat-err-qs:hover,
.bilet__repeat-err-qs:focus {
    color: rgb(199, 199, 199);
    border: 3px solid #4463fa;
}


/*-------------------------------- TIMER ----------------------------*/

.timer {
    position: relative;
}

.timer__controlls {
    position: absolute;
    left: 17px;
    top: 40px;
    text-align: center;
}

.timer__display-remain-time {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 26px;
    color: #F7958E;
}

.timer__circle-back {
    fill: none;
    stroke: #B6B6B6;
    stroke-width: 9px
}
.timer__circle-progress {
    fill: none;
    stroke: #F7958E;
    stroke-width: 9px;
    transition: stroke-dashoffset 0.7s;
}
.timer__circle-pointer {
    fill: #FFF;
    stroke: #F7958E;
    stroke-width: 4px;
}
#timer__e-pointer {
    transition: transform 0.7s;
}

/*-------------------------------- Дорожные знаки ----------------------------*/

.znaki__intro-text,
.znaki__history-text {
    text-indent: 25px;
}

.znaki__gost {
    text-indent: 25px;
    font-weight: bold;
}

.znaki__img-zone {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 650px) {
    .znaki__img img {
        width: auto;
    }
}

.znaki__up-btn {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #0073f773;
    padding: 5px 15px;
    text-align: center;
    color: white!important;
}

@media (max-width: 500px) {
    .znaki__up-btn {
        padding: 15px 15px;
    }
}

.znaki__up-btn:hover,
.znaki__up-btn:focus {
    background-color: #0354b1d5;
}


.znaki__table {
    width: 100%;
    font-size: 23px;
    text-align: center;
    border-collapse: collapse;
}

.znaki__more-text {
    padding: 10px 0;
    line-height: 1.2;
}

.znaki__nav-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.znaki__nav-btn {
    display: block;
    text-decoration: none;
    color: black;
    width: 100%;
    padding: 20px 30px;
    background-color: transparent;
    font-size: 19px;
    margin-bottom: 5px;
    border: 1px solid #a0bbf9;
}

.znaki__nav-btn:hover,
.znaki__nav-btn:focus {
    color: white;
    border: 1px solid black;
    background: rgb(64,150,238); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(64,150,238,1) 0%, rgba(64,150,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(64,150,238,1) 0%,rgba(64,150,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(64,150,238,1) 0%,rgba(64,150,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
}

.znaki__table td {
    border: 1px solid  #d6dada;
}

.znaki__tr:hover,
.znaki__tr:focus {
    background: rgb(224,243,250); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(224,243,250,1) 0%, rgba(216,240,252,1) 50%, rgba(184,226,246,1) 51%, rgba(182,223,253,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(224,243,250,1) 0%,rgba(216,240,252,1) 50%,rgba(184,226,246,1) 51%,rgba(182,223,253,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(224,243,250,1) 0%,rgba(216,240,252,1) 50%,rgba(184,226,246,1) 51%,rgba(182,223,253,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0f3fa', endColorstr='#b6dffd',GradientType=0 ); /* IE6-9 */
}

.znaki__num {
    text-align: center;
}

@media (max-width: 500px) {
    .znaki__tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 20px;
    }

    .znaki__num { 
        font-size: 19px;
        width: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .znaki__img {
        width: 80%;
    }
    
    .znaki__img img {
        width: 100%;
    }

    .znaki__name {
        width: 80%;
        padding: 10px;
        line-height: 1.2;
        font-size: 14px;
    }

    .znaki__more {
        width: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.znaki__tr-more {
    text-align: left;
    background-color: #f1f1f1;
}

.znaki__td-more {
    padding: 20px;
}

.znaki__more-title {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.znaki__more-desc {
    margin: 0;
    padding: 0;
    color: #898c8b;
}

.znaki__tr-more--hidden {
    display: none;
}

.znaki__more-btn {
    display: block;
    margin: 5px;
    width: 30px;
    height: 30px;
    font-size: 0px;
    border: none;
    background-color: transparent;
    background-image: url('/images/pdd-znaki/arrow.svg');
    background-size: cover;
    opacity: 0.4;
}

.znaki__more-btn:hover,
.znaki__more-btn:focus {
    opacity: 1;
}

.znaki__filter-form-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .znaki__filter-form-container {
        flex-wrap: wrap;
    }
}

.znaki__filter-form-container fieldset {
    width: 30%;
}

@media (max-width: 600px) {
    .znaki__filter-form-container fieldset {
        width: 100%;
    }
}

.znaki__filter-label {
	position: relative;
	display: block;
	width: 100%;

	padding-left: 40px;

	font-size: 14px;
	line-height: 21px;
	font-weight: normal;

	cursor: pointer;
}

@media (max-width: 594px) {
    .znaki__filter-label {
        margin: 15px 0;
        font-size: 19px;
    }
}

.znaki__filter-label input[type="checkbox"] + .checkbox-indicator {
	position: absolute;
	top: -2px;
	left: 0;

	width: 23px;
	height: 23px;

	background-color: transparent;
	background-image: url("/images/checkbox-off.svg");
}

.znaki__filter-label input[type="radio"] + .checkbox-indicator {
	position: absolute;
	top: -2px;
	left: 0;

	width: 23px;
	height: 23px;

    background-color: transparent;
    border-radius: 50%;
	border: 2px solid black;
}

.znaki__filter-label input[type="checkbox"]:disabled + .checkbox-indicator {
	background-image: url("/images/checkbox-off-disabled.svg");
}

.znaki__filter-label input[type="checkbox"]:focus + .checkbox-indicator {
	outline: 5px auto -webkit-focus-ring-color;
}


.znaki__filter-label input[type="checkbox"]:checked + .checkbox-indicator {
	width: 26px;
	background-image: url("/images/checkbox-on.svg");
}

.znaki__filter-label input[type="radio"]:checked + .checkbox-indicator {
    background-color: black;
}

.znaki__filter-label input[type="checkbox"]:checked:disabled + .checkbox-indicator {
	background-image: url("/images/checkbox-on-disabled.svg");
}

.znaki__filter-result {
    display: block;
}

.znaki__filter-result--hidden {
    display: none;
}

.znaki__filter-result-area {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.znaki__filter-result-img {
    margin: 5px;
    margin-bottom: 10px;
    width: 100px;
}

.znaki__filter-result-img img {
    width: 100px;
}

.znaki__filter-result-img:hover,
.znaki__filter-result-img:focus {
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.znaki__filter-btn-zone {
    width: 100%;
    text-align: center;
}

.znaki__filter-btn-submit {
    font-size: 140%;
    margin-bottom: 40px;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .7em 20px;
    border: 1px solid;
    border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
    border-radius: 6px;
    outline: none;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;
}

.znaki__filter-btn-submit:hover,
.znaki__filter-btn-submit:focus {
    color: rgb(255,255,255);
    background-image: linear-gradient(#9dc7e7, #74afdd 50%, #378bce);
}

.znaki__filter-btn-reset {
    font-size: 140%;
    margin-bottom: 40px;
    color: black;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .7em 20px;
    border: none;
    border-radius: 6px;
    outline: none;
    background: #eaeaea;
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;
}

@media (max-width: 594px) {
    .znaki__filter-btn-submit,
    .znaki__filter-btn-reset {
        width: 47%;
    }
}

@media (max-width: 450px) {
    .znaki__filter-btn-submit,
    .znaki__filter-btn-reset {
        width: 100%;
         margin-bottom: 10px;
    }
}

.znaki__filter-btn-reset:hover,
.znaki__filter-btn-reset:focus {
    opacity: 0.8;
}

.znak-page {
    font-size: 20px;
    line-height: 1.2;
}

.znak-page__img-zone {
    text-align: center;
}



/*-------------------------------- КОНЕЦ Дорожные знаки ----------------------------*/


/*****************************************/
/*** Template specific layout elements ***/
/*****************************************/

div.center {
  text-align: center;
}

div#tabarea {
    padding-top: 10px;
	margin: 0 11px;
}

div#tabarea_2 {
        position: absolute;
	background: #f7f7f7 url(../images/mw_header_b_2.png) 0 0 repeat-x;
	margin: -13px 40px;
}

div#my-vk {
        position: absolute;
	margin: -18px 765px;
}

div#zagol {
        font-family: Arial Bold, sans-serif;
        font-size: 25pt;
        color: white;
        text-shadow: black 1px 1px 2px, blue 0 0 1em;
}


.prosto 
{ 
    font-family:Verdana; 
    font-size:17px; 
    color:#b8ccfe;
    padding-left: 10px; 
    background: #d6f3fb;
    cursor: hand; 
    border: 1px solid #beeefc;
} 

.aktiv 
{ 
    font-family:Verdana; 
    font-size:20px; 
    color:#ffffff; 
    padding-left: 10px;
    background-image: url(https://calko.ru/images/fon-articles2.jpg);
    cursor: hand;
   
} 



h5 {
display: block;
color: #018fe1;
text-shadow: 1px 1px 1px #0b0b0b;
font-size: 12px;
float: left;
margin: 0px 2px 0px 7px;
font-family: Arial, sans-serif;
font-weight: 700;
}

h6 {
display: block;
color: white;
text-shadow: 1px 1px 1px #121212;
font-size: 12px;
margin: 0px;
font-family: Arial, sans-serif;
font-weight: 600;
letter-spacing: 0.5px;
}


.topheader {
display: block;
position: absolute;
bottom: 0px;
left: 0px;
background: rgba(0, 0, 0, 0.70);
width: 210px;
padding: 3px 5px;


}




/* стиль подписей в верхнем блоке популярных статей на всех страницах */

.top2header {
display: block;
position: absolute;
bottom: 0px;
left: 0px;
background: rgba(0, 0, 0, 0.50);
width: 139px;
padding: 0px 2px;


}


/* стиль подписей в верхнем блоке новостей */


.top3header {
display: block;
position: absolute;
bottom: 0px;
left: 0px;
background: rgba(0, 0, 0, 0.50);
width: 241px;
padding: 5px 5px;


}


.top4header {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.50);
    width: 300px;
    padding: 7px 0px;
}

@media (max-width: 500px) {
    .top4header {
        width: 100%;
    }
}


.top-news
{

    position: relative;
    background-size:100% 100%;
}


/* стиль кнопок в билетах пдд пройти заново и следующий билет */

.pdd-refresh
{

    font-size:15px; 
    color:#ffffff;
    background-image:url(/images/pdd-online/button-refresh.jpg);
    height:50px;
    width:229px;

}

.pdd-next
{

    font-size:15px; 
    color:#ffffff;
    background-image:url(/images/pdd-online/button-next.jpg);
    height:50px;
    width:229px;

}

h7 {
display: block;
color: white;
text-shadow: 1px 1px 1px #121212;
font-size: 13px;
margin: 0px 2px 0px 14px;
font-family: Arial, sans-serif;
font-weight: 600;
letter-spacing: 0.5px;
}





.kat-1 
{ 
    font-family:Verdana; 
    font-size:20px; 
    vertical-align:middle;
    color:#b8ccfe;
    padding-left: 10px; 
    background: #fdfcfc;
    cursor: hand; 
    height:50;
    width:  200px;
} 

.kat-2 
{ 
    font-family:Verdana; 
    font-size:21px;
    vertical-align:middle; 
    color:#b8ccfe;
    padding-left: 10px; 
    background: #d6f3fb;
    cursor: hand; 
    border: 1px solid #beeefc;
    height: 50px;
    width:  200px;
   
} 

.shap-mat 
{
    padding-left: 10px;
    background: url(https://calko.ru/images/fon-articles.jpg) 100% 0 no-repeat;
    height: 100px;
    width:  577px;
}

#pathway {
	padding: 0px 10px 8px;
	width: auto;
	margin-top: -2px;
	margin-right: 250px;
	text-align: left;
}

#search {
	float: none;
	width:160px;
	margin-top: -15px;
	margin-right: 3px;
	height: 40px;
	overflow: hidden;
	text-align:right;
}

form#searchForm input {
	vertical-align: middle;
}

form#searchForm table {
	border-collapse: collapse;
}

form#searchForm td {
	padding:0;
}

#mod_search_searchword {
	padding-left: 13px;
}

#area {
	padding: 0;

}

#area_2 {
	padding: 0;
    

}

table.nopad {
	width: 100%;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}

table.nopad td.middle_pad {
	width: 20px;
}

/*****************************************/
/*** Joomla! specific content elements ***/
/*****************************************/

div.offline {
	background: #fffebb;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.2em;
	padding: 5px;
}

span.pathway {
  display: block;
  margin: 0 20px;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
}

/* headers */
div.componentheading {
  padding-left: 0px;
}

h1 {
	padding: 0;
	font-family:Helvetica ,Arial,sans-serif;
	font-size: 1.0em;
	font-weight: bold;
	vertical-align: bottom;
	color: #135cae;
	text-align: left;

}

h2, .contentheading {
font: bold 25px Arial; text-shadow: 2px 2px 2px #D4D4D4; word-spacing:1px; line-height:1.1; letter-spacing: -1px; overflow:hidden;;
color: #333333;
}

table.contentpaneopen h3 {
	margin-top: 25px;
}

h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}

h3, .componentheading, table.moduletable th, legend {
  margin: 0;
  font-weight: bold;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 1.4em;
  padding-left: 0px;
	margin-bottom: 10px;
	text-align: left;
}

/* small text */
.small {
	font-size: .90em;
	color: #999;
	font-weight: normal;
	text-align: left;
}

.modifydate {
  height: 20px;
  vertical-align: bottom;
	font-size: .90em;
	color: #999;
	font-weight: normal;
	text-align: left;
}

.createdate {

margin: 0 0 1em;
background-image: url(https://calko.ru/images/fon-articles-kat.jpg);
background-repeat: no-repeat;
overflow: hidden;
padding:6px 0 5px 5px;
line-height:13px;

	

}

a.readon {
	margin-top: 10px;
	display: block;
	float: left;
	background: url(../images/mw_readon.png) top right no-repeat;
	padding-right: 20px;
	line-height: 14px;
	height: 16px;
}

/* form validation */
.invalid { border-color: #ff0000; }
label.invalid { color: #ff0000; }


/** overlib **/

.ol-foreground {
	background-color: #f6f6f6;
}

.ol-background {
	background-color: #666;
}

.ol-textfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

.ol-captionfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #f6f6f6;
	font-weight: bold;
}
.ol-captionfont a {
	color: #0B55C4;
	text-decoration: none;
	font-size: 12px;
}


/* menu links */
a.mainlevel:link, a.mainlevel:visited {
	padding-left: 5px;
}

/* spacers */
span.article_separator {
	display: block;
	height: 20px;
}

.article_column {
	padding-right: 5px;
}

.column_separator {
	border-left: 1px dashed #e0e0e0;
	padding-left: 10px;
}

td.buttonheading img {
	border:none;
}

.clr {
	clear: both;
}

td.greyline {
  width: 20px;
  background: url(../images/mw_line_grey.png) 50% 0 repeat-y;
}

div#maindivider {
  border-top: 1px solid #ddd;
  margin-bottom: 10px;
  overflow: hidden;
  height: 1px;
}

table.blog span.article_separator {
	display: block;
	height: 20px;
}

/* edit button */
.contentpaneopen_edit{
	float: left;
}

/* table of contents */
table.contenttoc {
  margin: 5px;
  border: 1px solid #ccc;
  padding: 5px;
  float: right;
}

table.contenttoc td {
  padding: 0 5px;
}


/* content tables */
td.sectiontableheader {
  background: #efefef;
  color: #333;
  font-weight: bold;
  padding: 4px;
  border-right: 1px solid #fff;
}

tr.sectiontableentry0 td,
tr.sectiontableentry1 td,
tr.sectiontableentry2 td {
  padding: 4px;
}

td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2 {
  padding: 3px;
}


/* content styles */
table.contentpaneopen, table.contentpane {
	margin: 0;
	padding: 0;
	width: 100%;
}

table.contentpaneopen li {
	margin-bottom: 5px;
}

table.contentpaneopen fieldset {
	border: 0;
	border-top: 1px solid #ddd;
}

table.contentpaneopen h3 {
	margin-top: 25px;
}

table.contentpaneopen h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}

.highlight {
	background-color: #fffebb;
}

/* module control elements */
table.user1user2 div.moduletable {
	margin-bottom: 0px;
}

div.moduletable, div.module {
  margin-bottom: 25px;
}


div.moduletable_menu ul {
	margin: 0px 0;
	padding-left: 0px;
        list-style:none;
}


/* СТИЛЬ МЕНЮ СПРАВА */

div.moduletable_menu ul li a:link, div.moduletable_menu ul li a:visited {

    display: inline-block;
    width: 100%;
    font-size: 130%;
    color: #fff;
    
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .5em 0;
   
    
    border-radius: 20px;
    outline: none;
    background: #4fa501;
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;

}

div.moduletable_menu ul li a:hover {
  color: rgb(255,255,255);
  background: #488E01;
}
div.moduletable_menu ul li a:active {
  color: rgb(255,255,255);
 
  background: #488E01;
  box-shadow: none;
}


/* стиль подпунктов: */

div.moduletable_menu ul li ul li a:link, div.moduletable_menu ul li ul li a:visited {

line-height: 1.4;
margin-bottom:1px;
display: table;
margin-left: 3px;
color: #fefefe;
text-shadow: #2e7ebd 0 1px 2px;
width: 10.0em;
border: 1px;
border-radius: 6px;
background: #a6dbf3 linear-gradient(#a6dbf3, #95bfd3 50%, #c2eafd);
box-shadow: inset rgba(255,255,255,.5) 1px 1px;

}

div.moduletable_menu ul li ul li a:hover {
color: rgb(255,255,255);
  background-image: linear-gradient(#7ed5fd, #40c0fa 50%, #009fe7);

}


div.module_menu h3 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #eee;
	margin: -23px -4px 5px -5px;
	padding-left: 10px;
	padding-bottom: 2px;
}

div.module_menu {
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}

div.module_menu div div div {
	padding: 10px;
	padding-top: 30px;
	padding-bottom: 15px;
	width: auto;
}

div.module_menu div div div div {
	background: none;
	padding: 0;
}

div.module_menu ul {
	margin: 10px 0;
	padding-left: 20px;
        list-style:none;
}

div.module_menu ul li a:link, div.module_menu ul li a:visited {
	font-weight: bold;
}

#leftcolumn div.module {
	padding: 0 10px;
}

#leftcolumn div.module table {
	width: auto;
}

/* forms */
table.adminform textarea {
  width: 540px;
  height: 400px;
  font-size: 1em;
  color: #000099;
}

div.search input {
	width: 145px;
	border: 1px solid #ccc;
	margin: 15px 0 10px 0;
}

form#form-login fieldset { border: 0 none; margin: 0em; padding: 0.2em;}
form#form-login ul { padding-left: 20px; }

form#com-form-login fieldset { border: 0 none; margin: 0em; padding: 0.2em;}
form#com-form-login ul { padding-left: 20px; }

/* thumbnails */
div.mosimage         {  margin: 5px; }
div.mosimage_caption {  font-size: .90em; color: #666; }

div.caption       { padding: 0 10px 0 10px; }
div.caption img   { border: 1px solid #CCC; }
div.caption p     { font-size: .90em; color: #666; text-align: center; }

div.img_caption       { padding: 0 10px 0 10px; }
div.img_caption img   { border: 1px solid #CCC; }
div.img_caption p     { font-size: .90em; color: #666; text-align: center; }

/* Parameter Table */
table.paramlist {
	margin-top: 5px;
}

table.paramlist td.paramlist_key {
	width: 128px;
	text-align: left;
	height: 30px;
}

div.message {
	font-family : "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size : 14px;
	color : #c30;
	text-align: center;
	width: auto;
	background-color: #f9f9f9;
	border: solid 1px #d5d5d5;
	margin: 3px 0px 10px;
	padding: 3px 20px;
}

.banneritem img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Text advert style */

.banneritem_text {
	padding: 4px;
	font-size: 11px;
}

.bannerfooter_text {
	padding: 4px;
	font-size: 11px;
	background-color: #F7F7F7;
	text-align: right;
}

/* System Messages */
/* see system general.css */

.pagination span { padding: 2px; }
.pagination a    { padding: 2px; }

/* Polls */
.pollstableborder td {
	text-align: left;
}

/* WebLinks */
span.description {
	display:block;
	padding-left: 30px;
}

/* Frontend Editing*/
fieldset {
	border: 1px solid #ccc;
	margin-top: 15px;
	padding: 15px;
}

legend {
	margin: 0;
	padding: 0 10px;
}

td.key {
	border-bottom:1px solid #eee;
	color: #666;
}

/* Tooltips */

.tool-tip {
	float: left;
	background: #ffc;
	border: 1px solid #D4D5AA;
	padding: 5px;
	max-width: 200px;
}

.tool-title {
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-weight: bold;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
	background: url(../../system/images/selector-arrow.png) no-repeat;
}

.tool-text {
	font-size: 100%;
	margin: 0;
}

#syndicate{
	float:left;
	padding-left: 25px;
}

#power_by{
	float:right;
	padding-right: 25px;
}

/* Component Specific Fixes */

#component-contact table td {
	padding: 2px 0;
}

/*****************************/
/*** LADA COLOR ***/
/*****************************/

@media (max-width: 700px) {
    .lada-color_wrapper {
        display: block;
        width: 100%;
        overflow-x: scroll;
    }
}

.lada-color__table {
    width: 100%;
    border: 1px solid grey;
    border-collapse: collapse;
    border-radius: 40px;
    font-size: 16px;
}

.lada-color__table tr:hover {
    background-color: #edf5fc;
}

.lada-color__table th {
    padding: 15px 5px;
    text-align: center;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    border: 1px solid grey;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
}

.lada-color__table td {
    padding: 5px;
    border: 1px solid grey;
}

.lada-color__name {
    font-size: 18px;
}

.lada-color__num-text {
    font-size: 20px;
}

.lada-color__number {
    color: #2e7ebd;
    font-weight: bold;
}

.lada-color__color.metallic {
    position: relative;
}

.lada-color__color.metallic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.lada-color__color.metallic::after {
    content: 'M';
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 11px;
    color: #d4d3d3;
    font-weight: bold;
}

.lada-color__search-input {
    padding: 0 15px;
    height: 50px;
    border: 2px solid #4cbaed;
    border-radius: 6px;
    font-size: 24px;
}

@media (max-width: 595px) {
    .lada-color__search-input {
        width: 100%;
    }
}


.lada-color__search-button {
    font-size: 140%;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    white-space: pre-line;
    padding: .7em 20px;
    border: 1px solid;
    border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
    border-radius: 6px;
    outline: none;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    box-shadow: inset rgba(255,255,255,.5) 1px 1px;
}


.lada-color__search-button:hover,
.lada-color__search-button:focus {
    color: rgb(255,255,255);
    background-image: linear-gradient(#9dc7e7, #74afdd 50%, #378bce);
}


.lada-color__color-choise {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}


/* @media (max-width: 595px) {
    /* .lada-color__color-desc {
        display: none;
    } 

    .lada-color__name {
        word-wrap: break-word;
    }
} */

.lada-color__choise-result  p {
    margin: 20px 0;
  font-size: 20px;  
}

.lada-color__choise-title {
    text-align: center;
}

.lada-color__button-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lada-color__color-choise-button {
    width: 33%;
    height: 70px;
    margin-bottom: 10px;
    font-size: 140%;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #ccc;
    -webkit-box-shadow: -2px 10px 34px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 10px 34px -12px rgba(0,0,0,0.75);
    box-shadow: -2px 10px 34px -12px rgba(0,0,0,0.75);
    cursor: pointer;
    opacity: 0.7;
}

.lada-color__choise-close-btn {
    width: 150px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid #ccc;
    cursor: pointer;
}

.lada-color__color-choise-button:hover,
.lada-color__color-choise-button:focus,
.lada-color__choise-close-btn:hover,
.lada-color__choise-close-btn:focus {
  border: 2px solid black;
  opacity: 1;
}

.lada-color__color-choise-button.red {
    background: #ff3019; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ff3019 0%, #cf0404 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ff3019 0%,#cf0404 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ff3019 0%,#cf0404 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__color-choise-button.blue {
    background: #4096ee; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #4096ee 0%, #4096ee 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #4096ee 0%,#4096ee 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #4096ee 0%,#4096ee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#4096ee',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__color-choise-button.white {
 
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #eeeeee 0%, #eeeeee 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #eeeeee 0%,#eeeeee 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #eeeeee 0%,#eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__color-choise-button.orange {
    background: #ff7400; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ff7400 0%, #ff7400 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ff7400 0%,#ff7400 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ff7400 0%,#ff7400 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7400', endColorstr='#ff7400',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__color-choise-button.green {
    background: #b4e391; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #b4e391 0%, #61c419 50%, #b4e391 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #b4e391 0%,#61c419 50%,#b4e391 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #b4e391 0%,#61c419 50%,#b4e391 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__color-choise-button.black {
    background: #7d7e7d; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #7d7e7d 0%, #0e0e0e 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #7d7e7d 0%,#0e0e0e 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #7d7e7d 0%,#0e0e0e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.lada-color__hint-area {
    position: relative;
}

.lada-color__hint-list {
    margin: 0;
    padding: 0;
    position: absolute;
    outline: none;
    overflow: hidden;
    border: none;
    -webkit-box-shadow: 10px 13px 21px -15px rgba(0,0,0,0.75);
            box-shadow: 10px 13px 21px -15px rgba(0,0,0,0.75);
    -webkit-appearance: menu;
}

.lada-color__hint {
    display: block;
    min-width: 300px;
    padding: 5px;
    padding-left: 15px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
    color: #2e7ebd;
    font-size: 18px;
}

.lada-color__hint:hover,
.lada-color__hint:focus {
    background-color: #f3f1f1;
}

.lada-color__navigation-list {
    display: flex;
    margin: 0px;
    margin-bottom: 15px;
	padding: 0px;
	font-size: 0px;
	line-height: 0px;
	height: 40px;
}

@media (max-width: 700px) {
    .lada-color__navigation-list { 
        flex-direction: column;
        margin-bottom: 145px;
    }
}

.lada-color__navigation-item {
    position: relative;
	margin: 0px 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}

.lada-color__navigation-item::before {
	content:"";
	position: absolute;
	right: -9px;
	top: -1px;
	z-index: 20;
	border-left: 10px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

.lada-color__navigation-item::after {
	content:"";
	position: absolute;
	right: -10px;
	top: -1px;
	z-index: 10;
	border-left: 10px solid #ccc;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

.lada-color__navigation-item:hover::before,
.lada-color__navigation-item:focus::before { 
   border-left: 10px solid #b6daf8;
}

.lada-color__navigation-item:last-child::after,
.lada-color__navigation-item:last-child::before {
    display: none;
}

.lada-color__navigation-link:hover,
.lada-color__navigation-link:focus { 
    background-color: #b6daf8;
}

.lada-color__navigation-link {
    display: block;
	font-size: 12px;
	line-height: 40px;
	color: #757575;
	padding: 0px 15px 0px 25px;
	text-decoration: none;
	background: #fff;
	border: 1px solid #ddd;
	white-space:nowrap;
	overflow: hidden;
}

.lada-color__navigation-text {
    display: block;
	font-size: 12px;
	line-height: 40px;
	padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 0px 40px 40px 0px;
}

.lada-color__color-intro-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    line-height: 1.6;
    font-size: 18px;
    text-indent: 45px;
    padding-bottom: 10px;
}

.lada-color__ads-inner {
    margin: 20px auto;
    text-align: center!important;
}

.lada-color__share-area {
    display: flex;
    justify-content: space-between;  
    width: 100%;
    padding: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    box-sizing: border-box;
}

.lada-color__share-up {
    display: flex;
    width: 100%;
    justify-content: center; 
    /*text-align: center;*/
    margin-bottom: 15px;
}

.lada-color__share-up-text {
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
}


/*-----------------------ТАБЛИЦА ЦВЕТОВ ПО МОДЕЛЯМ-----------------------*/

.color-table {
  width: 100%;
  border: 1px solid #eeeeee;
  text-align: center;
  border-collapse: collapse;
}

.color-table__th {
  padding: 15px 5px;
  text-align: center;
  color: rgba(255,255,255,.9);
  text-shadow: #2e7ebd 0 1px 2px;
  border: 1px solid grey;
  background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
}

.color-table__td {
  border: 1px solid #eeeeee;
}

.color-table__td--image {
  width: 200px;
  padding-top: 5px;
}

@media (max-width: 450px) {
    .color-table__th {
        display: none;
    }
    
    .color-table__tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .color-table__td--image {
        width: 100%;
        text-align: center;
    }
    
    .color-table__td--name {
        width: 100%;
        padding: 10px 0;
    }
    
    .color-table__td--link {
        width: 100%;
    }
}

.color-table__tr:hover {
  background-color: #edf5fc;
}

.color-table__name {
  margin: 0;
  padding: 0;
  
  font-size: 24px;
  color: #0c3a6d;
  text-align: center
}

.color-table__link {
  font-size: 18px;
}

.color-table__no-photo {
    font-size: 19px;
    margin-bottom: 10px;
    color: grey;
}

@media (max-width: 450px) {
   .color-table__link {
        display: block;
        padding: 15px;
   }
}

/*-----------------------КОНЕЦ ТАБЛИЦА ЦВЕТОВ ПО МОДЕЛЯМ-----------------------*/

.adsense__right {
    padding: 10px 0;
    text-align: center;
	margin-top:20px;
}

@media (max-width: 700px) {
    .content-main-image img {
        width: 100%;
    }
}

.content-main-image {
text-align: center!important;
}

.content-box {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    line-height: 1.6;
    font-size: 18px;
}

.content-box p {
    text-indent: 45px;
    padding-bottom: 10px;
}

.content-box img {
    border: 1px solid black;
    margin-bottom: 15px;
}

@media (max-width: 700px) {
    .content-box iframe {
        width: 100%;
    }
}

.dalee {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin: auto;
}

.adsense-dalee {
    float: left;
    border: 1px solid black;
    margin-right: 10px;
    padding-right: 5px;
}

.content-dalee a {
    float: left;
    border: 1px solid black;
}

.clearfix {
  clear:both;
}


.cveta-lada li {
    margin-bottom: 15px!important;
    line-height: 1.6;
    font-size: 25px;
}

.cveta-lada img {
    width: 200px;
}

.cveta-lada img:hover {
    opacity: 0.7;
}

.cveta-lada a {
    margin-bottom: 5px;
}

.social-bottoms {
    height: 45px;
    padding: 10px;
    margin: 10px;
    border: 1px solid #d4cbd0;
    border-radius: 10px 10px
    
}

.reposts {
    width:50%;
    float: left;
}

@media (max-width: 500px) {
    .reposts {
        width: 100%;
    }
}

.vk-bottom {
  width:50%; 
  float: right;
}

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

.pagination strong {
    display: block;
    padding: 5px;
    border: 1px solid #dad9d9;
    margin: 1px;
}
 
 
/* =====================    КОДЫ РЕГИОНОВ  ================================= */

    .regions-code__find-code-label,
    .regions-code__find-name-label {
        display: block;
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .regions-code__number {
        display: flex;
        position: relative;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        margin: 0 auto;
        width: 700px;
        height: 170px;
        border: 7px solid black;
        border-radius: 25px;
        background: linear-gradient(180deg, rgba(245, 242, 243,1) 3.1576253838280453%,rgba(244, 241, 242,1) 3.1576253838280453%,rgba(222, 222, 222,1) 78.28556806550665%);
    }

    @media (max-width: 940px) {
        .regions-code__number {
            width: 100%;
        }
    }

    @media (max-width: 570px) {
        .regions-code__number {
            font-size: 60px;
        }
    }

    @media (max-width: 540px) {
        .regions-code__number {
            height: 140px;
        }
    }

    @media (max-width: 480px) {
        .regions-code__number {
            height: 120px;
        }
    }

    .regions-code__number:before,
    .regions-code__number:after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        background-color: black;
        border-radius: 50%;
        top: 50%;
        margin-top: -6px;
    }

    .regions-code__number:before {
        left: 10px;
    }

    .regions-code__number:after {
        right: 10px;
    }

    .regions-code__number-left {
        flex-grow: 1;
        display: block;
        border: none;
    }

    .regions-code__number-left-text {
        font-size: 100px;
        line-height: 100px;
        font-weight: 700;
        text-align: center;
        text-shadow: 1px 1px 1px #928d8f;
    }

    @media (max-width: 940px) {
        .regions-code__number-left-text {
            font-size: 80px;
        }
    }

    @media (max-width: 570px) {
        .regions-code__number-left-text {
            font-size: 60px;
        }
    }

    @media (max-width: 540px) {
        .regions-code__number-left-text {
            line-height: 140px;
        }
    }

    @media (max-width: 480px) {
        .regions-code__number-left-text {
            font-size: 40px;
            line-height: 120px;
        }
    }

    @media (max-width: 400px) {
        .regions-code__number-left-text {
            display: none;
        }
    }

    .regions-code__number-right {
        display: flex;
        position: relative;
        height: 170px;
        flex-direction: column;
        justify-content: center;
        padding-left: 10px;
        width: 200px;
    }
    
    @media (max-width: 940px) {
        .regions-code__number-right {
            width: 30%;
        }
    }
    
    @media (max-width: 540px) {
        .regions-code__number-right {
            height: 140px;
        }
    }
    
    @media (max-width: 480px) {
        .regions-code__number-right {
            height: 120px;
        }
    }
    
    @media (max-width: 400px) {
        .regions-code__number-right {
            width: 100%;
        }
    }

    .regions-code__number-right:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 170px;
        background-color: black;
    }
    
    @media (max-width: 540px) {
        .regions-code__number-right:before {
            height: 140px;
        }
    }
    
    @media (max-width: 480px) {
        .regions-code__number-right:before {
            height: 120px;
        }
    }

    .regions-code__find-code-input {
        width: 100%;
        height: 90px;
        font-size: 80px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }

    @media (max-width: 940px) {
        .regions-code__find-code-input {
            font-size: 60px;
        }
    }

    @media (max-width: 520px) {
        .regions-code__find-code-input {
            font-size: 40px;
        }
    }

    @media (max-width: 400px) {
        .regions-code__find-code-input {
            font-size: 60px;
            margin-bottom: 0;
        }
    }


    .regions-code__find-code-rus-area {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    @media (max-width: 540px) {
        .regions-code__find-code-rus-area {
            display: none;
        }
    }

    .regions-code__find-code-rus-flag {
        width: 50%;
        border: 2px solid black;
    }

    .regions-code__find-code-rus-flag-color {
        display: block;
        width: 100%;
        height: 10px;
        border-bottom: 2px solid black;
    }

    .regions-code__find-code-rus-flag-color--white {
        background-color: white;
    }

    .regions-code__find-code-rus-flag-color--blue {
        background-color: #0036a8;
    }

    .regions-code__find-code-rus-flag-color--red {
        background-color: #d62718;
        border: none;
    }

    .regions-code__find-code-rus {
        padding: 0;
        margin: 0;
        font-size: 30px;
        letter-spacing: 5px;
    }

    .regions-code__code-btn-zone {
        width: 100%;
        display: block;
        padding: 15px 0;
        text-align: center;
    }

    .regions-code__code-btn {
        width: 300px;
        height: 40px;
        font-size: 140%;
        color:rgba(68, 67, 67, 0.9);
        text-shadow: #b5b5b5 0 1px 2px;
        text-decoration: none;
        text-align: center;
        line-height: 1.1;
        white-space: pre-line;
        padding-top: 5px;
        border: 1px solid;
        border-color: #d6d6d6;
        border-radius: 6px;
        outline: none;
        background: linear-gradient(180deg, rgba(245, 242, 243,1) 3.1576253838280453%,rgba(244, 241, 242,1) 3.1576253838280453%,rgba(222, 222, 222,1) 78.28556806550665%);
        box-shadow: inset rgba(255,255,255,.5) 1px 1px;
    }

    .regions-code__code-btn:hover,
    .regions-code__code-btn:focus {
        color: white;
        text-shadow: #2e7ebd 0 1px 2px;
        border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
        background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    }


    @media (max-width: 400px) {
        .regions-code__code-btn {
            width: 100%;
        }
    }

    .regions-code__find-name-form {
        text-align: center;
    }

    .regions-code__find-name-input {
        padding: 0 15px;
        height: 50px;
        width: 400px;
        border: 2px solid #c6c7c7;
        border-radius: 6px;
        font-size: 24px;
    }

    .regions-code__name-btn {
        color:rgba(68, 67, 67, 0.9);
        text-shadow: #b5b5b5 0 1px 2px;
        text-decoration: none;
        text-align: center;
        height: 50px;
        font-size: 140%;
        line-height: 1.2;
        white-space: pre-line;
        padding: 0 32px;
        padding-top: 5px;
        border: 1px solid;
        border-color: #d6d6d6;
        border-radius: 6px;
        outline: none;
        background: linear-gradient(180deg, rgba(245, 242, 243,1) 3.1576253838280453%,rgba(244, 241, 242,1) 3.1576253838280453%,rgba(222, 222, 222,1) 78.28556806550665%);
        box-shadow: inset rgba(255,255,255,.5) 1px 1px;
    }

    .regions-code__name-btn:hover,
    .regions-code__name-btn:focus {
        color: white;
        text-shadow: #2e7ebd 0 1px 2px;
        border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
        background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    }

    .regions-code__result-h1 {
        font-size: 30px;
    }

    .regions-code__result-error {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-bottom: 10px;
        border: 1px solid #d60000;
        border-radius: 10px;
        padding: 20px;
    }

    .regions-code__result-error-title {
        text-align: center;
        color: #d60000;
        font-size: 40px;
        margin-bottom: 30px;
    }

    .regions-code__result-pre-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: grey;
    }

    .regions-code__result-title {
        font-size: 50px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 40px;
        color: #0c3a6d;
    }

    .regions-code__result-part,
    .regions-code__result-codes,
    .regions-code__result-old-codes {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1;
    }

    .regions-code__result-area hr {
        border-color: #ffffff;
    }

    .regions-code__result-codes-zone {
        display: flex;
        justify-content: space-between;
    }

    @media (max-width: 620px) {
        .regions-code__table-wrapper {
            width: 100%;
            overflow-x: scroll;
        }
    }

    .regions-code__table-title {
        text-align: center; 
    }

    .regions-code__table {
        width: 100%;
        border: 1px solid grey;
        border-collapse: collapse;
        border-radius: 4px;
        font-size: 24px;
        line-height: 1.2;
    }

    .regions-code__table th {
        padding: 15px 5px;
        text-align: center;
        color: rgba(255,255,255,.9);
        text-shadow: #2e7ebd 0 1px 2px;
        border: 1px solid grey;
        background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
    }

    .regions-code__table td {
        padding: 15px 10px;
        border: 1px solid grey;
    }

    .regions-code__tr:hover {
    	background-color: #eaf7ff;
    	font-weight: bold;
    	color: #0c3a6d;
    }

    .regions-code__code {
        width: 70px;
        text-align: center;
    }

    .regions-code__result-comment-cta {
        font-size: 20px;
        text-align: center;
        line-height: 1.2;
        margin: 10px 0;
        color: #006300;
    }

    .regions-code__after-text-img {
        display: block;
        text-align: center;
    }

    .regions-code__part-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .regions-code__part-list li {
        display: block;
    }

    .regions-code__part-button {
        background-color: #fff;
        margin: 5px 5px;
        font-size: 20px;
        padding: 10px;
        border: 1px solid #3d8ecf;
        border-radius: 5px;
        cursor: pointer;
    }

    .regions-code__part-button:hover,
    .regions-code__part-button:focus {
        background-color: #3d8ecf;
        color: #fff;
    }

    .regions-code__part-button:active {
        background-color: #255074;
    }

    .regions-code__part-button--active {
        background-color: #3d8ecf;
        color: white;
        border: 1px solid black;
    }

    /* slot machine */

    .regions-code__slot-machine-zone {
        display: flex;
        position: relative;
        align-items: center;
        margin-bottom: 50px;
    }
    
    @media (max-width: 570px) {
        .regions-code__slot-machine-zone {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    .regions-code__slot-machine-h2 {
        text-align: center;
    }

    .regions-code__slot-machine-pre-text {
        font-size: 16px;
        text-align: center;
        color: #646363;
        margin-bottom: 20px;
    }

    .regions-code__slot-machine-dom-zone,
    .regions-code__slot-machine-dps-zone {
        position: absolute;
        top: -70px;
        display: flex;
    }

    .regions-code__slot-machine-dom-img,
    .regions-code__slot-machine-dps-img {
        width: 126px;
        opacity: 0;
        margin-left: 140px;
    }
    
    @media (max-width: 520px) {
        .regions-code__slot-machine-dom-img,
        .regions-code__slot-machine-dps-img {
            width: 126px;
        }
    }
    
    .regions-code__slot-machine-dom-img--show,
    .regions-code__slot-machine-dps-img--show {
        opacity: 1;
        margin-left: 0;
        -webkit-transition: all 2s ease-in-out 0s;
	    -moz-transition: all 2s ease-in-out 0s;
	    -o-transition: all 2s ease-in-out 0s;
	    -ms-transition: all 2s ease-in-out 0s;
	    transition: all 2s ease-in-out 0s;
    }

    .regions-code__slot-machine-cloud-img,
    .regions-code__slot-machine-dps-cloud-img {
        height: 80px;
        opacity: 0;
    }

    .regions-code__slot-machine-cloud-img--show,
    .regions-code__slot-machine-dps-cloud-img--show {
        opacity: 1;
        -webkit-transition: all 2s ease-in-out 0s;
	    -moz-transition: all 2s ease-in-out 0s;
	    -o-transition: all 2s ease-in-out 0s;
	    -ms-transition: all 2s ease-in-out 0s;
	    transition: all 2s ease-in-out 0s;
    }

    .regions-code__slot-machine-number {
        display: flex;
        position: relative;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        margin: 0 auto;
        width: 500px;
        height: 130px;
        border: 6px solid black;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(245, 242, 243,1) 3.1576253838280453%,rgba(244, 241, 242,1) 3.1576253838280453%,rgba(222, 222, 222,1) 78.28556806550665%);
        -webkit-transition: all 0.3s ease-in-out 0s;
	    -moz-transition: all 0.3s ease-in-out 0s;
	    -o-transition: all 0.3s ease-in-out 0s;
	    -ms-transition: all 0.3s ease-in-out 0s;
	    transition: all 0.3s ease-in-out 0s;
    }

    .regions-code__slot-machine-number.green {
        background: #18f618;
        -webkit-transition: all 0.3s ease-in-out 0s;
	    -moz-transition: all 0.3s ease-in-out 0s;
	    -o-transition: all 0.3s ease-in-out 0s;
	    -ms-transition: all 0.3s ease-in-out 0s;
	    transition: all 0.3s ease-in-out 0s;
    }

    @media (max-width: 570px) {
        .regions-code__slot-machine-number {
            font-size: 60px;
            margin-bottom: 70px;
            width: 100%;
        }
    }

    @media (max-width: 540px) {
        .regions-code__slot-machine-number {
            height: 140px;
        }
    }

    @media (max-width: 480px) {
        .regions-code__slot-machine-number {
            height: 100px;
        }
    }

    .regions-code__slot-machine-number:before,
    .regions-code__slot-machine-number:after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        background-color: black;
        border-radius: 50%;
        top: 50%;
        margin-top: -6px;
    }

    .regions-code__slot-machine-number:before {
        left: 10px;
    }

    .regions-code__slot-machine-number:after {
        right: 10px;
    }

    .regions-code__slot-machine-number-left {
        position: relative;
        text-align: center;
        align-items: center;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        overflow: hidden;
        height: 118px;
    }

    @media (max-width: 940px) {
        .regions-code__slot-machine-number-left {
            font-size: 80px;
        }
    }

    @media (max-width: 570px) {
        .regions-code__slot-machine-number-left {
            font-size: 60px;
        }
    }

    @media (max-width: 540px) {
        .regions-code__slot-machine-number-left {
            line-height: 140px;
        }
    }

    @media (max-width: 480px) {
        .regions-code__slot-machine-number-left {
            font-size: 40px;
            line-height: 100px;
            height: 100px;
        }
    }

    .regions-code__slot-machine-number-random-number {
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
    }
    
    @media (max-width: 480px) {
        .regions-code__slot-machine-number-random-number {
            font-size: 40px;
            line-height: 40px;
        }
    }

    .regions-code__slot-machine-number-baraban-text {
        position: absolute;
        display: flex;
        justify-content: space-between;
    }

    .regions-code__slot-machine-number-inn {
        width: 50px;
        word-wrap: break-word;
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        margin-top: 2100px; 
        margin-right: 3px;
        -webkit-transition: all 1s ease-in-out 0s;
	    -moz-transition: all 1s ease-in-out 0s;
	    -o-transition: all 1s ease-in-out 0s;
	    -ms-transition: all 1s ease-in-out 0s;
	    transition: all 1s ease-in-out 0s;
    }
    
    
    @media (max-width: 480px) {
        .regions-code__slot-machine-number-inn {
            font-size: 40px;
            line-height: 40px;
            width: 20px;
        }
    }

    .regions-code__slot-machine-number-inn--2,
    .regions-code__slot-machine-number-inn--3,
    .regions-code__slot-machine-number-inn--4 {
        width: 40px;
    }
    
     @media (max-width: 480px) {
        .regions-code__slot-machine-number-inn--2,
        .regions-code__slot-machine-number-inn--3,
        .regions-code__slot-machine-number-inn--4 {
            width: 20px;
        }
    }

    .regions-code__slot-machine-number-left.run-baraban .regions-code__slot-machine-number-inn {
        margin-top: -2100px;
        -webkit-transition: all 1s ease-in-out 0s;
	    -moz-transition: all 1s ease-in-out 0s;
	    -o-transition: all 1s ease-in-out 0s;
	    -ms-transition: all 1s ease-in-out 0s;
	    transition: all 1s ease-in-out 0s;
    }

    .regions-code__slot-machine-number-left.run-baraban .regions-code__slot-machine-number-inn--1 {
        -webkit-transition: all 1.1s ease-in-out 0s;
	    -moz-transition: all 1.1s ease-in-out 0s;
	    -o-transition: all 1.1s ease-in-out 0s;
	    -ms-transition: all 1.1s ease-in-out 0s;
	    transition: all 1.1s ease-in-out 0s;
    }

    .regions-code__slot-machine-number-left.run-baraban .regions-code__slot-machine-number-inn--2 {
        -webkit-transition: all 1.2s ease-in-out 0s;
	    -moz-transition: all 1.2s ease-in-out 0s;
	    -o-transition: all 1.2s ease-in-out 0s;
	    -ms-transition: all 1.2s ease-in-out 0s;
	    transition: all 1.2s ease-in-out 0s;
    }

    .regions-code__slot-machine-number-left.run-baraban .regions-code__slot-machine-number-inn--3 {
        -webkit-transition: all 1.3s ease-in-out 0s;
	    -moz-transition: all 1.3s ease-in-out 0s;
	    -o-transition: all 1.3s ease-in-out 0s;
	    -ms-transition: all 1.3s ease-in-out 0s;
	    transition: all 1.3s ease-in-out 0s;
    }

    .regions-code__slot-machine-number-left.run-baraban .regions-code__slot-machine-number-inn--4 {
        -webkit-transition: all 1.5s ease-in-out 0s;
	    -moz-transition: all 1.5s ease-in-out 0s;
	    -o-transition: all 1.5s ease-in-out 0s;
	    -ms-transition: all 1.5s ease-in-out 0s;
	    transition: all 1.5s ease-in-out 0s;
    }


    .regions-code__slot-machine-number-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 10px;
        width: 25%;
        position: relative;
        height: 130px;
    }

    .regions-code__slot-machine-number-right:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 130px;
        background-color: black;
    }

    @media (max-width: 940px) {
        .regions-code__slot-machine-number-right {
            width: 30%;
        }
    }
    
    @media (max-width: 480px) {
        .regions-code__slot-machine-number-right {
            height: 100px;
        }
        
        .regions-code__slot-machine-number-right:before {
            height: 100px;
        }
    }

    .regions-code__slot-machine-code {
        font-size: 60px;
        line-height: 60px;
        font-weight: bold;
        text-align: center;
    }
    
     @media (max-width: 400px) {
       .regions-code__slot-machine-code {
            font-size: 40px;
            line-height: 40px;
       }
    }

    .regions-code__slot-machine-rus-area {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .regions-code__slot-machine-rus-flag {
        width: 50%;
        border: 1px solid black;
    }

    .regions-code__slot-machine-rus-flag-color {
        display: block;
        width: 100%;
        height: 7px;
        border-bottom: 1px solid black;
    }

    .regions-code__slot-machine-rus-flag-color--white {
        background-color: white;
    }

    .regions-code__slot-machine-rus-flag-color--blue {
        background-color: #0036a8;
    }

    .regions-code__slot-machine-rus-flag-color--red {
        background-color: #d62718;
        border: none;
    }

    .regions-code__slot-machine-rus {
        padding: 0;
        margin: 0;
        font-size: 25px;
        letter-spacing: 2px;
    }
    
    @media (max-width: 400px) {
       .regions-code__slot-machine-rus {
            font-size: 15px;
       }
    }

    .regions-code__slot-machine-shoulder {
        position: relative;
        left: -100px;
        width: 80px;
        height: 100px;
        border-radius: 10px;
        background-color: #333;
        background-image: -webkit-linear-gradient(#666 0%, #333 60%, #666 100%);
        background-image: -moz-linear-gradient(#666 0%, #333 60%, #666 100%);
        background-image: -ms-linear-gradient(#666 0%, #333 60%, #666 100%);
        background-image: -o-linear-gradient(#666 0%, #333 60%, #666 100%);
        box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.2);
    }
    
     @media (max-width: 1040px) {
        .regions-code__slot-machine-shoulder {
            left: -50px;
        }
    }
    
    @media (max-width: 930px) {
        .regions-code__slot-machine-shoulder {
            left: -10px;
        }
    }

    .regions-code__slot-machine-arm {
        position: relative;
        top: 10px;
        left: 10px;
        cursor: pointer;
        width: 60px;
        height: 80px;
        border-radius: 10% / 50%;
        background-color: #666;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, transparent 15%, rgba(255, 255, 255, 0) 50%, transparent 85%, rgba(0, 0, 0, 0.3)), -webkit-linear-gradient(top, #333 0%, #666 10%, #999 30%, rgba(255, 255, 255, 0.8) 60%, #999 70%, #666 90%, #333 100%);
        background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, transparent 15%, rgba(255, 255, 255, 0) 50%, transparent 85%, rgba(0, 0, 0, 0.3)), -moz-linear-gradient(top, #333 0%, #666 10%, #999 30%, rgba(255, 255, 255, 0.8) 60%, #999 70%, #666 90%, #333 100%);
        background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, transparent 15%, rgba(255, 255, 255, 0) 50%, transparent 85%, rgba(0, 0, 0, 0.3)), -ms-linear-gradient(top, #333 0%, #666 10%, #999 30%, rgba(255, 255, 255, 0.8) 60%, #999 70%, #666 90%, #333 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, transparent 15%, rgba(255, 255, 255, 0) 50%, transparent 85%, rgba(0, 0, 0, 0.3)), -o-linear-gradient(top, #333 0%, #666 10%, #999 30%, rgba(255, 255, 255, 0.8) 60%, #999 70%, #666 90%, #333 100%);
    }

    .regions-code__slot-machine-arm:before {
        content: '';
        position: absolute;
        top: -40px;
        left: 16px;
        width: 16px;
        height: 70px;
        border-radius: 8px;
        box-shadow: 0px 2px 0px #333;
        background-color: #999;
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        transform: rotate(-10deg);
        background-image: -webkit-linear-gradient(left, #666 0%, rgba(255, 255, 255, 0.7) 50%, #666 100%);
        background-image: -moz-linear-gradient(left, #666 0%, rgba(255, 255, 255, 0.7) 50%, #666 100%);
        background-image: -ms-linear-gradient(left, #666 0%, rgba(255, 255, 255, 0.7) 50%, #666 100%);
        background-image: -o-linear-gradient(left, #666 0%, rgba(255, 255, 255, 0.7) 50%, #666 100%);
        background-image: linear-gradient(to right, #666666 0%, rgba(255, 255, 255, 0.7) 50%, #666666 100%);
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }

    .regions-code__slot-machine-arm:after {
        content: '';
        position: absolute;
        top: -70px;
        left: -4px;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background-color: #760209;
        border: 2px solid #5d0207;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background-image: -webkit-radial-gradient(50% 40%, closest-corner, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
        background-image: -moz-radial-gradient(50% 40%, closest-corner, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
        background-image: -ms-radial-gradient(50% 40%, closest-corner, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
        background-image: -o-radial-gradient(50% 40%, closest-corner, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }

    .regions-code__slot-machine-arm.clicked:before {
            top: -20px;
            left: 20px;
            -webkit-transform: rotate3d(100,10,0,180deg);
            -moz-transform: rotate3d(100,10,0,180deg);
            transform: rotate3d(100,10,0,180deg);
            -webkit-transform-origin: 0% 100%;
            -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
            -webkit-transition: all .5s ease-in-out 0s;
	        -moz-transition: all .5s ease-in-out 0s;
	        -o-transition: all .5s ease-in-out 0s;
	        -ms-transition: all .5s ease-in-out 0s;
	        transition: all .5s ease-in-out 0s;
    }


    .regions-code__slot-machine-arm.clicked:after {
        top: 90px;
        -webkit-transition: all .5s ease-in-out 0s;
	    -moz-transition: all .5s ease-in-out 0s;
	    -o-transition: all .5s ease-in-out 0s;
	    -ms-transition: all .5s ease-in-out 0s;
	    transition: all .5s ease-in-out 0s;
    }

    .regions-code__slot-machine-xxxaaa {
        position: absolute;
        bottom: -60px;
        color: green;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        padding: 15px;
    }
    
    
    /* end slot machine */
    
      /* =====================  КОНЕЦ  КОДЫ РЕГИОНОВ  ================================= */
      

      /* BASE PRICE - базовая ставка Осаго */
.osago-base-price {
    font-size: 16px;
}

.osago-base-price__pre-title {
    text-align: center;
    font-size: 20px;
    background-color: #eaf4fd;
    padding: 15px 0;
}

.osago-base-price__h2 {
    text-align: center;
    line-height: 1.2;
}

.osago-base-price__text {
    text-indent: 25px;
}


@media (max-width: 520px) {
    .osago-base-price__table-zone {
        width: 100%;
        overflow-x: scroll;
    }
}

.osago-base-price__table {
    width: 100%;
    border: 1px solid grey;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.2;
}

.osago-base-price__table th {
    padding: 10px 5px;
    text-align: center;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    border: 1px solid grey;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
}

.osago-base-price__table-tr-main {
    font-size: 18px;
    background-color: #ebf7fd;
}

.osago-base-price__table-tr-child .osago-base-price__table-td-num {
    font-size: 14px;
}

.osago-base-price__table-tr-child .osago-base-price__table-td-type {
    padding-left: 30px;
}

.osago-base-price__table-tr-child .osago-base-price__table-td-numbers {
    font-size: 18px;
}

.osago-base-price__table-td-num {
    text-align: center;
    width: 5%;
}

.osago-base-price__table-td-type {
    padding: 5px;
}

.osago-base-price__table-td-numbers {
    text-align: center;
}

.osago-base-price__btn-list,
.osago-base-price__dop-btn-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.osago-base-price__btn,
.osago-base-price__result-reset {
    min-width: 200px;
    border: 1px solid #51b5ec;
    border-radius: 4px;
    background-color: transparent;
    padding: 20px 10px;
    margin: 10px;
    font-size: 20px;
    color: #0c3a6d;
}

.osago-base-price__btn:hover,
.osago-base-price__btn:focus {
    background-color: #3d8ecf;
    color: #fff;
}

.osago-base-price__btn--active {
    background-color: #3d8ecf;
    color: white;
    border: 1px solid black;
}

.osago-base-price__result-zone {
    text-align: center;
    border-top: 1px solid black;
    border-bottom: 1px solid;
    background-color: #eaf4fd;
    padding: 10px 0;
    margin-right: 10px;
}

.osago-base-price__result-text {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.2;
}

.osago-base-price__result-reset {
    min-width: 150px;
    border: 1px solid #e2e0e0;
    color: #9c9c9c;
    padding: 10px 0;
}

.osago-base-price__result-reset:hover,
.osago-base-price__result-reset:focus {
    border: 1px solid black;
    color: black;
}


/* END BASE PRICE - базовая ставка Осаго */

/* ================= Начало расход топлива у самолета Ан-225 ===================*/

.an225 p {
            font-size: 18px;
            text-indent: 30px;
        }

        p.an225__main-text {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .an225__main-text span {
            font-weight: bold;
            color:#135cae;
        }
        .an225__video-zone,
        .an225__img-zone {
            display: block; 
            width: 100%; 
            text-align: center;
            margin-bottom: 20px;
        }
/* ================= Конец расход топлива у самолета Ан-225 ===================*/

/* ================= Начало расход топлива минтранс ===================*/

.rashod-mintrans__btns-list,
.rashod-mintrans__btns-dop-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0;
    padding: 0; 
}

.rashod-mintrans__btns-dop-list {
    justify-content: flex-start;
    margin: 20px 0;
}

.rashod-mintrans__btns-title {
    font-size: 18px;
    font-weight: bold;
}

.rashod-mintrans__btns-dop-zone {
    display: block;
    width: 100%;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.rashod-mintrans__btns-list li {
    display: block;
}

.rashod-mintrans__btns {
    background-color: #fff;
    margin: 5px 5px;
    font-size: 20px;
    padding: 10px;
    border: 1px solid #3d8ecf;
    border-radius: 5px;
    cursor: pointer;
}

.rashod-mintrans__btns:hover,
.rashod-mintrans__btns:focus {
    background-color: #3d8ecf;
    color: #fff;
}

.rashod-mintrans__btns--active {
    background-color: #3d8ecf;
    color: white;
    border: 1px solid black;
}

.rashod-mintrans__table {
    width: 100%;
    border: 1px solid #d4d4d4;
    border-collapse: collapse;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 30px;
}

.rashod-mintrans__table th {
    padding: 15px 5px;
    text-align: center;
    color: rgba(255,255,255,.9);
    text-shadow: #2e7ebd 0 1px 2px;
    border: 1px solid #d4d4d4;
    background: #4cbaed linear-gradient(#4db9f0, #60a3d8 50%, #378bce);
}

.rashod-mintrans__tr:hover {
    background-color: #eaf7ff;
    font-weight: bold;
    color: #0c3a6d;
}

.rashod-mintrans__table td {
    padding: 5px;
    border: 1px solid #d4d4d4;
}

.rashod-mintrans__td-brand {
    font-weight: bold;
    font-size: 30px;
    background-color: #207ce524;
}

.rashod-mintrans__td-litr {
    background-color: #eaf7ff;
    font-weight: bold;
    text-align: center;
}

.rashod-mintrans__up-btn {
    display: none;
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #0073f773;
    padding: 5px 15px;
    text-align: center;
    color: white!important;
}
    
.rashod-mintrans__up-btn:hover,
.rashod-mintrans__up-btn:focus {
    background-color: #0354b1d5;
}

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

@media (max-width: 600px) {
    .rashod-mintrans__descr-wrapper {
        flex-direction: column;
    }
}

.rashod-mintrans__desc_img {
    margin-right: 5px;
}

.rashod-mintrans__descr-text {
    font-size: 19px;
    text-indent: 25px;
}

.rashod-mintrans__calc-formula {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #e6e4e4;
    border-radius: 5px;
    padding: 10px 5px;
    margin: 10px 0;
    color: #0c3a6d;
}

.rashod-mintrans__calc-input-wrapper {
    border: 1px solid #e6e4e4;    
    border-radius: 5px;
    margin-bottom: 10px;
    margin-right: 5px;
}

.rashod-mintrans__calc-input-zone {
    display: block;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-right: 5px;
}

.rashod-mintrans__calc-input {
    width: 150px;
    font-size: 40px;
    margin-bottom: 10px;
    padding: 10px 15px;
    padding-right: 0;
    text-align: center;
}

.rashod-mintrans__calc-input-zone label {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.rashod-mintrans__calc-input-text {
    color: gray;
}

.rashod-mintrans__calc-rezult-zone {
    border: 1px solid #e6e4e4;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 30px;
    margin-right: 5px;
}

.rashod-mintrans__calc-input-plus {
    display: block;
    border: 1px solid #e6e4e4;
    border-radius: 5px;
    padding: 7px 10px;
    color: gray;
    background-color: transparent;
    width: 200px;
    margin-bottom: 10px;
}

.rashod-mintrans__calc-input-plus:hover,
.rashod-mintrans__calc-input-plus:focus {
    border: 1px solid #000;
    color: #000;
}

.rashod-mintrans__calc-rezult-text {
    font-size: 20px;
}

.rashod-mintrans__calc-rezult-num-zone {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rashod-mintrans__calc-rezult {
    color: #5fa2d8;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
}

.rashod-mintrans__td-litr {
    cursor:pointer;
}

.rashod-mintrans__td-litr:hover {
    text-decoration: underline;
    font-size: 17px;
}
/* ================= Конец расход топлива минтранс ===================*/

/* ================= Начало выбор модели в цветах автоваз ===================*/

.lada-color__model-wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
}
.lada-color__model-list,
.lada-color__model-list-top {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 1000px;
  transition: margin-top 1s ease-out, max-height 3s ease-out;
}

.lada-color__model-item {
   width: 32%;
   margin: 5px; 
}

@media (max-width: 994px) {
  .lada-color__model-item {
    width: 45%;
  }
}

@media (max-width: 550px) {
  .lada-color__model-item {
    width: 90%;
  }
}

.lada-color__model-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    padding: 5px;
    background-color: transparent;
    font-size: 19px;
    margin-bottom: 5px;
    border: 1px solid #a0bbf9;
}

.lada-color__model-link:hover,
.lada-color__model-link:focus { 
    color: white;
    border: 1px solid black;
    background: rgb(64,150,238);
    background: -moz-linear-gradient(top, rgba(64,150,238,1) 0%, rgba(64,150,238,1) 100%);
    background: -webkit-linear-gradient(top, rgba(64,150,238,1) 0%,rgba(64,150,238,1) 100%);
    background: linear-gradient(to bottom, rgba(64,150,238,1) 0%,rgba(64,150,238,1) 100%);
    text-decoration: none;
}

.lada-color-model-hidden {
  margin-top: -500px;
  max-height: 0;
  transition: margin-top 1s ease-out, max-height 3s ease-out;
}

.lada-color__model-button {
padding-right: 40px;
position: relative;
}

.lada-color__model-button:after {
content: '>>';
display: block;
width: 25px;
height: 25px;
position: absolute;
top: 50%;
margin-top: -12px;
right: 5px;
transform: rotate(90deg);
transition: transform 1s ease-out 0.0s;
}

.lada-color__model-button-open.lada-color__model-button:after {
 transform: rotate(0deg);
 transition: transform 1s ease-out 0.0s;
}

.lada-color__model-button-wrapper {
  display: block;
  width: 100%;
  text-align: center;
}

.lada-color__model-img {
  margin-right: 5px;
}

@media (max-width: 520px) {
.lada-color__model-img {
    width: auto!important;
  }
}

/* ================= КОнец выбор модели в цветах автоваз ===================*/


/*Кнопка показать еще в цвете авто*/

.cveta-img__btn-show {
    width: 100%;
    display: block;
    padding: 25px 40px;
    font-size: 20px;
    text-decoration: none;
    background: #b3ff5a;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
    border: 1px solid #0c3a6d;
    cursor: pointer;
}

.cveta-img__btn-show:hover,
.cveta-img__btn-show:focus {
    color: white;
    font-size: 22px;
    background: linear-gradient(113.80436209453319deg, rgba(1, 96, 186,1) 4.927083333333334%,rgba(0, 0, 0,1) 97.84374999999999%);
    text-decoration: none;
}

.color-section h2 {
    background-color: #5da7dc;
    padding: 10px 5px;
    color: white;
    text-shadow: 2px 2px 2px #404040;
}

.blockquote {
border: dotted #666 1px;
border-left: 5px solid rgba(199, 0, 0, 1);
margin:10px 10px;
padding:15px 15px;
color:#333;
font-size:12px;
background:#fcfcfc;
}
.button_1743671609925 {
    display: inline-block !important;
    text-decoration: none !important;
    background-color: #ea1b00 !important;
    color: #ffffff !important;
    border: 0px solid #006089 !important;
    border-radius: 20px !important;
    font-size: 16px !important;
    padding: 8px 28px !important;  !important;
}
.button_1743671609925:hover{
    text-decoration: none !important; 
    background-color: #c60000 !important;
    color: #ffeded !important;
    border-color: #006089 !important;
}

* {
  margin: 0;
  padding: 0;
}

