

/* Start:/podbor-derzhavok/a/css/styles.css?17733926218741*/
/*@media all and (min-width: 992px) {
    body:has(.spd) .header.out:not(.header_light) {
        position: static;
        padding: 24px 0 0;
    }

    body:has(.spd) .header + .main {
        margin-top: 0 !important;
    }
}*/

.spd {
    display: flex;
    flex-flow: column nowrap;
    gap: 32px;
}

@media all and (min-width: 1200px) {
    .spd {
        gap: 64px;
    }
}

@media all and (min-width: 1366px) {
    .spd {
        gap: 96px;
    }
}

.spd__body {
    display: flex;
    flex-flow: column nowrap;
    gap: 48px;
}

.spd__sidebar {
    display: none;
}

@media all and (min-width: 1200px) {
    .spd__main {
        display: flex;
        flex-flow: row nowrap;
        gap: 20px;
    }
    .spd__body {
        flex: 1 1 auto;
    }
    .spd__sidebar {
        display: block;
        position: relative;
        flex: 0 0 420px;
    }
    .spd__footer {
        display: none;
    }
}

@media all and (min-width: 1366px) {
    .spd__sidebar {
        flex: 0 0 560px;
    }
}

/* Левая панель с разделами */
.spd__sections {
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

@media all and (min-width: 768px) {
    .spd__sections {
        flex-flow: row nowrap;
        gap: 20px;
    }
}

.spd__section {
    position: relative;
    width: 100%;
    aspect-ratio: 33 / 12;
    padding: 20px;
    color: #FFFFFF;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-all);
}

.spd__section:hover {
    opacity: 1;
}

.spd__section:before {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #FFFFFF;
}
.spd__section:after {
    content: '';
    position: absolute;
    right: 23px;
    bottom: 23px;
    z-index: 2;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.spd__section.active {
    opacity: 1;
}

.spd__section.active:after {
    background-color: #E53831;
}

.spd__sectionname {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1;
}

.spd__sectiontext {
    position: relative;
    z-index: 2;
    font-size: 12px;
    line-height: 1;
    font-weight: 350;
    font-variation-settings: "wght" 350;
}

.spd__sectionback {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spd__sectionback:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: var(--transition-all);
    box-shadow: inset 0 0 0 2px transparent;
}

.spd__section.active .spd__sectionback:after {
    box-shadow: inset 0 0 0 2px #E53831;
}

.spd__sectionbg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-all);
    border-radius: 10px;
}

.spd__section:hover .spd__section,
.spd__section.active .spd__sectionbg {
    opacity: 1;
}
@media all and (min-width: 1200px) {
    .spd__sectionback:after {
        display: none;
    }
}
@media all and (min-width: 1366px) {
    .spd__section {
        padding: 32px;
    }
    .spd__sectionname {
        font-size: 21px;
    }

    .spd__sectiontext {
        font-size: 16px;
    }

    .spd__section:before {
        right: 32px;
        bottom: 32px;
    }

    .spd__section:after {
        right: 35px;
        bottom: 35px;
    }
}
/* Центральная панель с формами */

.spd__form {
    display: none;
}

.spd__form.active {
    display: block;
}

.spd__formsteps {
    display: flex;
    flex-flow: column nowrap;
    gap: 40px;
}

.spd__formstepnum {
    display: inline-block;
    margin: 0 0 16px;
    padding: 0 9px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    border: 1px solid #333333;
    border-radius: 2px;
    transition: var(--transition-all);
}

.spd__form:not(:has(:checked)) .spd__formstep:nth-child(1) .spd__formstepnum,
.spd__formstep:has(:checked) + .spd__formstep:not(:has(:checked)) .spd__formstepnum {
    color: #E53831;
    border-color: #E53831;
}

.spd__formstep:has(:checked) .spd__formstepnum {
    color: #ffffff;
    background-color: #E53831;
    border-color: #E53831;
}

.spd__formstepname {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1;
}

.spd__formstepvals {
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
}

.spd__formstepval {
    flex: 0 0 auto;
}

.spd__formstepinput {
    display: none;
}

.spd__formsteplabel {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 0;
    gap: 10px;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #333333;
    background-color: #F6F8FF;
    transition: var(--transition-all);

    --spd-bg: #F6F8FF;
    --spd-color: #2B2A29;
}


@media all and (min-width: 1366px) {
    .spd__formstepnum {
        margin: 0 0 24px;
        padding: 0 13px;
        font-size: 18px;
        line-height: 33px;
        border-radius: 5px;
    }
    .spd__formstepname {
        margin-bottom: 36px;
        font-size: 24px;
    }
    .spd__formsteplabel {
        font-size: 21px;
        line-height: 24px;
        padding: 16px 24px;
    }
}

.spd__formsteplabel:hover {    
    background-color: #555555;
    color: #FFFFFF;
    --spd-bg: #555555;
    --spd-color: #FFFFFF;
}
.spd__formsteplabel:active,
.spd__formstepinput:checked + .spd__formsteplabel {
    background-color: #333333;
    color: #FFFFFF;

    --spd-bg: #333333;
    --spd-color: #FFFFFF;
}

.spd__formsteplabeltext {
    display: block;
}

.spd__formsteplabelicn {
    display: block;
}

.spd__formsteplabelicn svg {
    display: block;
    width: auto;
    height: 20px;
}

.spd__formsteplabelicn svg * {
    transition: var(--transition-all);    
}

/* Disabled state */
.spd__formstepinput:disabled + .spd__formsteplabel,
.spd__formsteplabel_disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.5);
}

/* Loading state */
.spd__form_loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.spd__form_loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background-image: url(/local/templates/rinscom2/a/img/loader.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/* Help */


.spd__help {
    border-radius: 15px;
    background-color: #E53831;
    color: #FFFFFF;
    padding: 28px 35px;
}

.spd__helptext {    
    font-size: 14px;
    line-height: 1.1;
    margin: 0 0 16px;
}

.spd__helpbtns {
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

.spd__helpbtn {
    text-align: center;
    line-height: 37px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0.8;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    transition: var(--transition-all);
    cursor: pointer;
}

.spd__helpbtn:hover {
    opacity: 0.9;
}

.spd__helpbtn:active {
    opacity: 1;
}

.spd__helpbtn_form {
    color: #E53831;
    background-color: #FFFFFF;
}

.spd__helpbtn_form:hover {
    
}

.spd__helpbtn_reset:active {    
    color: #E53831;
    background-color: #FFFFFF;
}

@media all and (min-width: 1200px) {
    .spd__help {
        position: sticky;
        top: 0;
        border-radius: 10px;
    }

    body:has(.header.out) .spd__help {
        /*top: 102px;*/
    }    

    .spd__helpbtns {
        flex-flow: row nowrap;
        gap: 10px;
    }

    .spd__helpbtn {
        width: calc((100% - 10px) / 2);
    }
}


@media all and (min-width: 1366px) {
    .spd__help {
        padding: 32px 28px 32px 41px;
    }

    .spd__helptext {    
        font-size: 21px;
    }


    .spd__helpbtn {
        line-height: 54px;
        font-size: 18px;
    }
}

/* Messages */
.spd__loading {
    text-align: center;
    padding: 40px;
    color: #999;
}

.spd__no-results {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

.spd__error {
    background: #fee;
    color: #c00;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.spd__conflict-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.spd__no-options-warning {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}
/* End */


/* Start:/local/templates/rinscom2/a/css/ncard.css?17728019124107*/
.ncard {
	border: 1px solid #F6F8FF;
	border-radius: 10px;
	padding: 19px 17px;
}
.ncard_notavail {
}
.ncard__box {	
	display: flex;
	flex-flow: column nowrap;
	gap: 4px;
}
.ncard__imagebox {
	position: relative;
	display: block;
	text-decoration: unset;
	width: 100%;
}
.ncard__pic {
	width: 100%;
	height: 100%;
	padding: 10px 0;
	display: block;
}
.ncard__img {
	width: 100%;
	aspect-ratio: 296 / 176;
	display: block;
	object-fit: contain;
}
.ncard__brand {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 20px;
}
.ncard__brandlogo {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
.ncard__desc {	
	display: flex;
	flex-flow: column nowrap;
	gap: 36px;
}
.ncard__info {
	display: flex;
	flex-flow: column nowrap;
	gap: 10px;
}

.ncard__arts {
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
}

.ncard__art {
	font-size: 10px;
	line-height: 10px;
	font-weight: 300;
    font-variation-settings: "wght" 300;
	color: rgba(51, 51, 51, 0.5);
	display: flex;
	align-items: center;
	gap: 5px;
	transition: var(--transition-all);
}

.ncard__art:hover {
	color: #000000;
}

.ncard__art:before {
	font-size: 10px;
	width: 10px;
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ncard__art .tooltip__text {
	top: calc(100% + 5px) !important;
}

.ncard__name {
	font-size: 18px;
	line-height: 1;
	color: #333333;
	text-decoration: unset;
	transition: var(--transition-all);
}
.ncard__name:hover {	
	color: #000000;
	text-decoration: unset;
}
.ncard__properties {
	display: flex;
	flex-flow: column nowrap;
	gap: 10px;
	position: relative;
}
.ncard__properties:before {
	content: '';
	position: absolute;
	left: 0;
	top: -15.5px;
	display: block;
	height: 1px;
	width: 100%;
	background-color: #F6F8FF;
}
.ncard__property {	
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	font-weight: 350;
	font-variation-settings: "wght" 350;
	font-size: 13px;
	line-height: 9px;
	color: rgba(51, 51, 51, 0.75);
}
.ncard__propertyname {
}
.ncard__propertyval {
	font-weight: 400;
	font-variation-settings: "wght" 400;
	color: rgba(51, 51, 51, 1);
}
.ncard__foot {
	display: flex;
	flex-flow: column nowrap;
	gap: 12px;
}
.ncard__prices {
}
.ncard__price {
	font-weight: 500;
	font-variation-settings: "wght" 500;
	font-size: 21px;
	line-height: 1;
	color: #333333;
}
.ncard__priceval span {
	font-size: 0.8em;
	color: #666666;
	font-weight: 400;
	font-variation-settings: "wght" 400;
}
.ncard__priceamount {
}
.ncard__actions {
	display: flex;
	flex-flow: row nowrap;
	gap: 4px;
}
.ncard__btn {
	border-radius: 5px;
	border: 1px solid;
	font-size: 14px;
	line-height: 38px;
	flex: 1 1 auto;
	text-align: center;
	transition: var(--transition-all);
	text-decoration: none;
}

.ncard__btn:hover {
	text-decoration: none;	
}
.ncard__btn_detail {
}
.ncard__action {
	border-radius: 5px;
	flex: 0 0 40px;
	background-color: #F6F8FF;
	color: #E0E2EA;
	transition: var(--transition-all);
}
.ncard__action:before {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ncard__action_compare:before {
	font-size: 21px;
}
.ncard__action_favorite:before {
	font-size: 19.81px;
}

.ncard__action_favorite.active:before {
	content: "\e95d";
}
.ncard__action:hover,
.ncard__action.active {
	color: var(--color-blue);
}

@media all and (min-width: 1366px) {
	.ncard {
		padding: 20px;
	}
	.ncard__box {
		gap: 18px;
	}
	.ncard__img {
		aspect-ratio: 384 / 296;
	}
	.ncard__desc {	
		gap: 30px;
	}

	.ncard__name {
		font-size: 21px;
	}

	.ncard__properties {
		gap: 12px;
	}
	.ncard__properties:before {
		display: none;
	}
	.ncard__property {	
		font-size: 15px;
		line-height: 11px;
	}
	.ncard__foot {
		display: flex;
		flex-flow: column nowrap;
		gap: 20px;
	}
	.ncard__price {
		font-size: 24px;
	}
	.ncard__actions {
		gap: 10px;
	}
	.ncard__btn {
		font-size: 18px;
		line-height: 54px;
	}
	.ncard__action {
		flex: 0 0 56px;
	}
	.ncard__action:before {
		width: 56px !important;
		height: 56px !important;
		line-height: 56px !important;
	}
}
/* End */


/* Start:/local/templates/rinscom2/components/bitrix/news.list/spd/style.css?17727985511621*/
.spdg {
    display: flex;
    flex-flow: column nowrap;
    gap: 32px;
}
.spdg__head {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.spdg__headnum {
    font-size: 16px;
    line-height: 36px;
    color: #333333;
}
.spdg__headreset {    
    display: flex;
    flex-flow: row-reverse nowrap;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    line-height: 36px;
    color: rgba(51, 51, 51, 0.5);
    transition: var(--transition-all);
}
.spdg__headreset:before {
    font-size: 5.63px;
    width: 10px !important;
    height: 10px !important;
    line-height: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spdg__headreset:hover {    
    color: rgba(51, 51, 51, 1);
}

.spdg__grid {
    display: flex;
    flex-flow: row wrap;   
    gap: 20px;
}
.spdg__grid .ncard {
    width: 100%;
}

@media all and (min-width: 720px) {
    .spdg__grid .ncard {
        width: calc((100% - 20px) / 2);
    }
}
@media all and (min-width: 1200px) {
    .spdg {
        gap: 56px;
    }
    .spdg__head {
        flex-flow: column nowrap;
        align-items: start;
        gap: 20px;
    }
    .spdg__headnum {
        font-size: 21px;
        line-height: 21px;
    }
    .spdg__headreset {
        font-size: 16px;
        line-height: 16px;
    }
    .spdg__grid .ncard {
        width: calc((100% - 40px) / 3);
    }
}
@media all and (min-width: 1690px) {
    .spdg__grid .ncard {
        width: calc((100% - 60px) / 4);
    }
}
/* End */


/* Start:/local/templates/rinscom2/components/bitrix/system.pagenavigation/spdajax/style.css?17727859301020*/
.spd-pagination__morebox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.spd-pagination__more {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  color: #2B2A29;
  background-color: #F6F8FF;
  text-decoration: none;
  border-radius: 5px;  
  width: 100%;
  max-width: 360px;
  transition: var(--transition-all);
}

.spd-pagination__more:hover {
  text-decoration: none;
  background-color: #333333;
  color: #ffffff;  
}

.spd-pagination:has(.loader) .spd-pagination__more {
  display: none;
}

.loader,
.loader:after {
  width: 64px;
  height: 64px;
}
.loader {
  margin: 0 auto;
  font-size: 0;
  width: 64px;
  height: 64px;
  background-image: url(/local/templates/rinscom2/a/img/loader.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}


@media all and (min-width: 1200px) {
  .spd-pagination__more {
    font-size: 18px;
    line-height: 56px;
  }
}
/* End */
/* /podbor-derzhavok/a/css/styles.css?17733926218741 */
/* /local/templates/rinscom2/a/css/ncard.css?17728019124107 */
/* /local/templates/rinscom2/components/bitrix/news.list/spd/style.css?17727985511621 */
/* /local/templates/rinscom2/components/bitrix/system.pagenavigation/spdajax/style.css?17727859301020 */
