
/* ClinicBC source: /wp-content/plugins/clinicbc-reviews/assets/css/reviews.css */
.bc-reviews {
    --bc-green: #087f5b;
    --bc-cta: #01687b;
    --bc-yellow: #ffcf33;
    --bc-ink: #17212b;
    --bc-muted: #68737d;
    --bc-line: #e3e8eb;
    background: #f6f8f8;
    color: var(--bc-ink);
    padding: 64px 0;
    font-family: inherit;
}

.bc-reviews * { box-sizing: border-box; }
.bc-reviews__container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.bc-reviews__heading,
.bc-reviews__toolbar,
.bc-reviews__review header,
.bc-reviews__review footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bc-reviews__title { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin: 0; }
.bc-reviews__branch-label { color: var(--bc-muted); margin: 10px 0 0; }
.bc-reviews__selector {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(390px, 100%);
    gap: 7px;
    color: var(--bc-muted);
    font-size: 13px;
}
.bc-reviews__selector.is-open { z-index: 20; }
.bc-reviews__selector-label { padding-left: 2px; font-weight: 700; }
.bc-reviews__selector select {
    width: 100%;
    min-width: 300px;
    max-width: 100%;
    border: 1px solid var(--bc-line);
    border-radius: 12px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2317212b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding: 12px 46px 12px 14px;
    font: inherit;
    color: var(--bc-ink);
    cursor: pointer;
}
.bc-reviews__selector optgroup { color: var(--bc-muted); font-weight: 700; }
.bc-reviews__selector option { color: var(--bc-ink); font-weight: 400; }
.bc-reviews__selector.is-enhanced select {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}
.bc-reviews__select-button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px 13px 17px;
    border: 1px solid #dce5e7;
    border-radius: 15px;
    background: linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
    box-shadow: 0 7px 20px rgba(23, 33, 43, .055);
    color: var(--bc-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.bc-reviews__select-button > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bc-reviews__select-button > svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--bc-cta);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s cubic-bezier(.22, .61, .36, 1);
}
.bc-reviews__select-button:hover {
    border-color: rgba(1, 104, 123, .48);
    box-shadow: 0 9px 24px rgba(1, 104, 123, .1);
    transform: translateY(-1px);
}
.bc-reviews__select-button:focus-visible {
    outline: 0;
    border-color: var(--bc-cta);
    box-shadow: 0 0 0 3px rgba(1, 104, 123, .14), 0 9px 24px rgba(1, 104, 123, .1);
}
.bc-reviews__selector.is-open .bc-reviews__select-button {
    border-color: var(--bc-cta);
    box-shadow: 0 0 0 3px rgba(1, 104, 123, .12), 0 12px 28px rgba(23, 33, 43, .1);
    transform: none;
}
.bc-reviews__selector.is-open .bc-reviews__select-button > svg { transform: rotate(180deg); }
.bc-reviews__select-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: 100%;
    max-height: min(390px, 58vh);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px;
    border: 1px solid #dce5e7;
    border-radius: 18px;
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 22px 55px rgba(23, 33, 43, .16), 0 3px 12px rgba(23, 33, 43, .06);
    scrollbar-color: #b8cdcf transparent;
    scrollbar-width: thin;
    animation: bc-reviews-select-in .18s cubic-bezier(.22, .61, .36, 1);
}
.bc-reviews__select-menu::-webkit-scrollbar { width: 7px; }
.bc-reviews__select-menu::-webkit-scrollbar-track { background: transparent; }
.bc-reviews__select-menu::-webkit-scrollbar-thumb { background: #b8cdcf; border: 2px solid #fff; border-radius: 99px; }
.bc-reviews__select-group { padding: 2px 0 6px; }
.bc-reviews__select-group + .bc-reviews__select-group {
    margin-top: 5px;
    padding-top: 9px;
    border-top: 1px solid #edf1f2;
}
.bc-reviews__select-group-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 7px;
    color: #7a858e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.2;
    text-transform: uppercase;
}
.bc-reviews__select-group-label::after {
    height: 1px;
    flex: 1 1 auto;
    background: #edf1f2;
    content: '';
}
.bc-reviews__select-option {
    position: relative;
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px 9px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #2f3a43;
    font: inherit;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
.bc-reviews__select-option > span { min-width: 0; }
.bc-reviews__select-option > svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.75);
    transition: opacity .16s ease, transform .16s ease;
}
.bc-reviews__select-option:hover,
.bc-reviews__select-option:focus-visible {
    outline: 0;
    background: #f0f7f7;
    color: var(--bc-cta);
}
.bc-reviews__select-option:focus-visible { box-shadow: inset 0 0 0 2px rgba(1, 104, 123, .14); }
.bc-reviews__select-option.is-selected {
    background: #e8f4f4;
    color: var(--bc-cta);
    font-weight: 700;
}
.bc-reviews__select-option.is-selected > svg { opacity: 1; transform: scale(1); }
@keyframes bc-reviews-select-in {
    from { opacity: 0; transform: translateY(-7px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.bc-reviews__ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 30px 0 44px;
}
.bc-reviews__rating-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 7px 16px;
    padding: 22px;
    border: 1px solid var(--bc-line);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.bc-reviews__rating-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(23, 33, 43, .08); }
.bc-reviews__source { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.bc-reviews__source img { width: auto; height: 24px; max-width: 100px; object-fit: contain; }
.bc-reviews__score { grid-row: 1 / 3; grid-column: 2; font-size: 32px; }
.bc-reviews__stars,
.bc-reviews__review-stars { color: var(--bc-yellow); letter-spacing: 2px; }
.bc-reviews__count { color: var(--bc-muted); font-size: 14px; }

.bc-reviews__toolbar { margin-bottom: 18px; }
.bc-reviews__toolbar h3 { font-size: 28px; margin: 0; }
.bc-reviews__nav { display: flex; gap: 8px; }
.bc-reviews__nav button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--bc-line);
    border-radius: 50%;
    background: #fff;
    color: var(--bc-ink);
    cursor: pointer;
    line-height: 0;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.bc-reviews__nav button svg {
    display: block;
    width: 18px;
    height: 18px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bc-reviews__nav button:hover {
    border-color: var(--bc-cta);
    color: var(--bc-cta);
    box-shadow: 0 6px 16px rgba(1, 104, 123, .14);
}
.bc-reviews__nav button:focus-visible {
    outline: 2px solid var(--bc-cta);
    outline-offset: 2px;
}
.bc-reviews__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(580px, calc(100vw - 44px));
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px;
}
.bc-reviews__track::-webkit-scrollbar { display: none; }
.bc-reviews__track.is-dragging,
.bc-reviews__track.is-settling {
    scroll-snap-type: none;
}
.bc-reviews__track.is-dragging {
    cursor: grabbing;
    user-select: none;
}
.bc-reviews__review {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--bc-line);
    border-radius: 18px;
    background: #fff;
    scroll-snap-align: start;
}
.bc-reviews__review header strong,
.bc-reviews__review header span { display: block; }
.bc-reviews__review header > div::after {
    display: block;
    height: 16px;
    margin-top: 4px;
    content: '';
}
.bc-reviews__doctor { color: var(--bc-green); font-size: 14px; }
.bc-reviews__text { line-height: 1.6; max-height: 132px; overflow: hidden; white-space: pre-line; }
.bc-reviews__text.is-open { max-height: none; }
.bc-reviews__text p { margin: 0 0 10px; }
.bc-reviews__more {
    align-self: flex-start;
    border: 0;
    background: none;
    color: var(--bc-green);
    padding: 4px 0;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}
.bc-reviews__review footer { margin-top: auto; padding-top: 18px; color: var(--bc-muted); font-size: 13px; }
.bc-reviews__review footer a { color: var(--bc-green); }
.bc-reviews__original {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 20px;
    line-height: 1;
    text-decoration: none;
}
.bc-reviews__original:hover span { text-decoration: underline; }
.bc-reviews__original span { display: block; line-height: 18px; }
.bc-reviews .bc-reviews__original img {
    display: block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}
.bc-reviews__empty { color: var(--bc-muted); }
.bc-reviews__actions { position: relative; margin-top: 26px; }
.bc-reviews__leave {
    border: 0;
    border-radius: 999px;
    background: var(--bc-cta);
    color: #fff;
    padding: 15px 26px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.bc-reviews__leave:hover { background: #005667; }
.bc-reviews__leave:focus-visible { outline: 3px solid var(--bc-green); outline-offset: 3px; }
.bc-reviews__platforms {
    position: absolute;
    z-index: 4;
    left: 0;
    top: calc(100% + 10px);
    min-width: 260px;
    padding: 18px;
    border: 1px solid var(--bc-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(23, 33, 43, .15);
}
.bc-reviews__platforms div { display: grid; gap: 8px; margin-top: 12px; }
.bc-reviews__platforms a { color: var(--bc-green); font-weight: 600; }
.bc-reviews__status { min-height: 20px; margin: 12px 0 0; color: var(--bc-muted); font-size: 13px; }
.bc-reviews [hidden] { display: none !important; }
.bc-reviews.is-loading { opacity: .68; pointer-events: none; }

@media (pointer: fine) {
    .bc-reviews__track { cursor: grab; }}

@media (prefers-reduced-motion: reduce) {
    .bc-reviews__select-button,
    .bc-reviews__select-button > svg,
    .bc-reviews__select-option,
    .bc-reviews__select-option > svg { transition: none; }
    .bc-reviews__select-menu { animation: none; }
    .bc-reviews__nav button,
    .bc-reviews__nav button svg { transition: none; }}

@media (max-width: 700px) {
    .bc-reviews { padding: 42px 0; }
    .bc-reviews__heading { align-items: flex-start; flex-direction: column; }
    .bc-reviews__selector,
    .bc-reviews__selector select,
    .bc-reviews__select-button { width: 100%; min-width: 0; }
    .bc-reviews__ratings { grid-template-columns: 1fr; margin-bottom: 34px; }
    .bc-reviews__review { padding: 20px; }
    .bc-reviews__review header { align-items: flex-start; flex-direction: column; }
    .bc-reviews__review-stars { white-space: nowrap; }}


/* ClinicBC source: /wp-content/plugins/contact-form-7/includes/css/styles.css */
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}}

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

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

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}


/* ClinicBC source: /wp-content/plugins/technofix-cookies-manager/public/assets/popup.css */
.tcm-cookie-bar {
    position: fixed;
    left: 24px;
    bottom: 24px;
    min-width: 270px;
    max-width: 370px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(60,60,60,.13);
    border-radius: 11px;
    z-index: 9999;
    padding: 21px 24px 15px 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.tcm-cookie-text {
    margin-bottom: 18px;
    color: #222;
    font-size: 15px;
    line-height: 1.48;
    text-align: left;
}
.tcm-cookie-text strong {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}
.tcm-cookie-text a {
    color: #4978d2;
    text-decoration: underline;
}
.tcm-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.tcm-btn {
    border: none;
    border-radius: 5px;
    padding: 6px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background .13s, color .13s;
    box-shadow: none;
    outline: none;
}
.tcm-accept {
    background: #4978d2;
    color: #fff;
}
.tcm-reject {
    background: #e0e4ea;
    color: #263659;
}
.tcm-settings {
    background: transparent;
    color: #4978d2;
    border: 1px solid #4978d2;
    padding: 6px 16px;
}
.tcm-btn:active {
    filter: brightness(.93);
}

@media (max-width: 520px) {
    .tcm-cookie-bar {
        left: 3vw;
        right: 3vw;
        min-width: 0;
        max-width: none;
        width: auto;
        padding: 13px 5vw 10px 5vw;
        font-size: 14px;
    }}

/* --- Модалка настроек --- */
.tcm-settings-modal {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(50, 52, 64, 0.18);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcm-settings-window {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,.16);
    padding: 28px 22px 18px;
    max-width: 400px;
    width: 95vw;
}
.tcm-settings-title {
    font-weight: 600;
    font-size: 1.18rem;
    margin-bottom: 18px;
}
.tcm-settings-row { margin-bottom: 18px; }
.tcm-settings-name { font-size: 1.05rem; }
.tcm-settings-desc { font-size: .93rem; color: #666; margin-bottom: 6px; }
.tcm-settings-switch { margin-top: 2px; }
.tcm-settings-switch input[type="checkbox"] { margin-right: 7px; }
.tcm-settings-switch.tcm-disabled { opacity: .5; }
.tcm-settings-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.tcm-save-settings { background: #4978d2; color: #fff; }
.tcm-cancel-settings { background: #eee; color: #333; }


/* ClinicBC source: /wp-content/plugins/expert-review/assets/public/css/styles.min.css */
.expert-review-expert-header,.expert-review-pluses-minuses-header,.expert-review-qa-header,.expert-review-score-header{margin-bottom:.8em;font-weight:700;font-size:1.3em;color:#5c0a93}.expert-review-expert-bio__avatar,.expert-review-qa__avatar{background:#5c0a93 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M24.3 21.6c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5zm0-12.5c-2.2 0-3.9 1.8-3.9 3.9s1.8 3.9 3.9 3.9 3.9-1.8 3.9-3.9-1.8-3.9-3.9-3.9zm17 7c-.1.9-.5 1.4-1.3 1.4h-1.1c-.8 0-1.2-.4-1.3-1.4l-.8-8.7c-.1-.6-.1-.9-.1-1.1 0-1.2.9-1.8 2.7-1.8s2.7.6 2.7 1.8c0 .3 0 .7-.1 1.1l-.7 8.7zm-1.9 8.6c-.7 0-1.3-.2-1.8-.8-.5-.5-.8-1.1-.8-1.8s.2-1.3.8-1.8 1.1-.8 1.8-.8 1.3.2 1.8.8.8 1.1.8 1.8-.2 1.3-.8 1.8c-.5.5-1.1.8-1.8.8zm-15.1.5c-8.8 0-16 6.9-16 15.3 0 1.2.1 2.3.4 3.3 4.8.6 10.1 1 15.6 1s10.8-.3 15.6-1c.2-1.1.4-2.2.4-3.3 0-8.5-7.2-15.3-16-15.3zM34.5 40c-3 .3-6.7.5-10.2.5s-7.1-.2-10.2-.5c0-.6 0-1.1.1-1.7.9-4.4 4.4-8 10.1-8 5.7 0 9.2 3.6 10.1 8 .1.6.2 1.2.1 1.7z' fill='%23fff'/%3E%3C/svg%3E") center no-repeat}.expert-review-button{display:inline-block;padding:.45em 1.1em;background:#5c0a93;color:#fff;white-space:nowrap;font-size:.95em;border-radius:3px;-webkit-transition:all .2s;transition:all .2s;cursor:pointer}.expert-review-button:focus,.expert-review-button:hover{opacity:.9}.expert-review{background:#f5f1f8;border-radius:4px;margin:2em 0}.expert-review-expert{position:relative;padding:25px 15px}@media (min-width:768px){.expert-review-expert{padding:25px 30px}}@media (min-width:768px){.expert-review-expert-bio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.expert-review-expert-bio__avatar,.expert-review-expert-bio__body,.expert-review-expert-bio__button{position:relative;width:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.expert-review-expert-bio__avatar{width:60px;height:60px;-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;max-width:60px;margin-right:10px;margin-bottom:10px;border-radius:50%;background-size:25px;overflow:hidden}@media (min-width:768px){.expert-review-expert-bio__avatar{width:80px;height:80px;-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;max-width:80px;margin-right:30px;margin-bottom:0}}.expert-review-expert-bio__avatar img{max-width:100%;height:auto;background:#fff}.expert-review-expert-bio__body{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;line-height:1.3}@media (min-width:768px){.expert-review-expert-bio__body{line-height:1.5}}@media (min-width:768px){.expert-review-expert-bio__body+.expert-review-expert-bio__button{margin-left:15px}}.expert-review-expert-bio__button{width:100%;margin-top:12px}@media (min-width:768px){.expert-review-expert-bio__button{margin-top:0}}.expert-review-expert-bio-name{color:#5c0a93}@media (min-width:768px){.expert-review-expert-bio-name{font-size:1.1em}}.expert-review-expert-bio-description{font-size:.95em;opacity:.6;margin-right:10px}.expert-review-expert-text{margin:20px 0 15px;line-height:1.7}.expert-review-qa{position:relative;padding:25px 15px 10px}@media (min-width:768px){.expert-review-qa{padding:25px 30px 15px}}.expert-review-qa__question{font-weight:400;line-height:1.5;font-size:.95em;margin-bottom:20px}.expert-review-qa__answer{font-weight:400;line-height:1.5;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:35px;font-size:16px}.expert-review-qa__avatar,.expert-review-qa__text{position:relative;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.expert-review-qa__avatar{width:40px;height:40px;-webkit-box-flex:0;-ms-flex:0 0 40px;flex:0 0 40px;max-width:40px;margin-right:20px;border-radius:50%;background-size:25px;overflow:hidden}@media (min-width:768px){.expert-review-qa__avatar{width:50px;height:50px;-webkit-box-flex:0;-ms-flex:0 0 50px;flex:0 0 50px;max-width:50px;margin-right:30px}}.expert-review-qa__avatar img{max-width:100%;height:auto}.expert-review-qa__text{position:relative;background:#fff;padding:20px;border-radius:6px;-webkit-box-shadow:0 1px 10px rgba(146,123,165,.1);box-shadow:0 1px 10px rgba(146,123,165,.1);font-size:.95em}@media (min-width:768px){.expert-review-qa__text{font-size:1em}}.expert-review-qa__text:before{content:"";position:absolute;top:16px;left:-12px;width:0;height:0;border-style:solid;border-width:9px 12px 9px 0;border-color:transparent #fff transparent transparent}.expert-review-score{position:relative;padding:15px 15px}@media (min-width:768px){.expert-review-score{padding:15px 30px}}.expert-review-score-line{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:15px 0}.expert-review-score-line__name,.expert-review-score-line__progress,.expert-review-score-line__score{position:relative;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.expert-review-score-line__name{-webkit-box-flex:0;-ms-flex:0 0 44%;flex:0 0 44%;max-width:44%;margin-right:1%;font-size:.9em}@media (min-width:576px){.expert-review-score-line__name{-webkit-box-flex:0;-ms-flex:0 0 39%;flex:0 0 39%;max-width:39%}}@media (min-width:768px){.expert-review-score-line__name{-webkit-box-flex:0;-ms-flex:0 0 29%;flex:0 0 29%;max-width:29%}}.expert-review-score-line__progress{-webkit-box-flex:0;-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}@media (min-width:576px){.expert-review-score-line__progress{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}@media (min-width:768px){.expert-review-score-line__progress{-webkit-box-flex:0;-ms-flex:0 0 60%;flex:0 0 60%;max-width:60%}}.expert-review-score-line__progress-container{background:#fff;height:17px;border-radius:4px;overflow:hidden;-webkit-box-shadow:0 1px 10px rgba(146,123,165,.1);box-shadow:0 1px 10px rgba(146,123,165,.1)}.expert-review-score-line__progress-fill{background:#5c0a93;background-image:-webkit-gradient(linear,left top,right top,from(#5c0a93),to(#a74198));background-image:linear-gradient(to right,#5c0a93,#a74198);height:17px;-webkit-box-shadow:0 1px 10px rgba(146,123,165,.3);box-shadow:0 1px 10px rgba(146,123,165,.3)}.expert-review-score-line__score{text-align:right;-webkit-box-flex:0;-ms-flex:0 0 15%;flex:0 0 15%;max-width:15%;color:#5c0a93;font-size:.85em;font-weight:700}@media (min-width:576px){.expert-review-score-line__score{-webkit-box-flex:0;-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}}.expert-review-score-summary{margin:30px 0 15px}@media (min-width:576px){.expert-review-score-summary{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.expert-review-score-summary__label,.expert-review-score-summary__text{position:relative;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.expert-review-score-summary__label{font-size:.9em;font-weight:700;margin-bottom:15px}@media (min-width:576px){.expert-review-score-summary__label{-webkit-box-flex:0;-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%;margin-bottom:0}}.expert-review-score-summary__content{font-size:.9em;line-height:1.5}@media (min-width:576px){.expert-review-score-summary__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 70%;flex:0 0 70%;max-width:70%}}.expert-review-score-summary__average{width:50px;height:50px;margin-top:-5px;margin-right:15px;margin-bottom:15px;line-height:50px;background:#5c0a93;color:#fff;border-radius:50%;text-align:center;font-size:1.2em;font-weight:700}@media (min-width:576px){.expert-review-score-summary__average{margin-bottom:0}}.expert-review-pluses-minuses{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:25px 15px}@media (min-width:768px){.expert-review-pluses-minuses{padding:25px 30px}}.expert-review-pluses-minuses-header{width:100%}.expert-review-minuses,.expert-review-pluses{position:relative;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-preferred-size:100%;flex-basis:100%}@media (min-width:768px){.expert-review-minuses,.expert-review-pluses{-ms-flex-preferred-size:0;flex-basis:0}}.expert-review-pluses{padding-right:10px}.expert-review-pluses+.expert-review-minuses{padding-left:10px}.expert-review-minus,.expert-review-plus{position:relative;font-size:.95em;margin:15px 0;padding-left:25px}.expert-review-minus:before,.expert-review-plus:before{content:"";position:absolute;top:.3em;left:0;width:12px;height:14px}.expert-review-plus:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M50 18H32V0H18v18H0v14h18v18h14V32h18V18z' fill='%235cc209'/%3E%3C/svg%3E") center no-repeat;background-size:contain}.expert-review-minus:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M50 32H0V18h50v14z' fill='%23fc2900'/%3E%3C/svg%3E") center no-repeat}.expert-review-expert+.expert-review-qa:before,.expert-review-qa+.expert-review-score:before,.expert-review-score+.expert-review-pluses-minuses:before{content:"";position:absolute;top:0;left:0;right:0;width:100%;height:1px;background:#fff}.expert-review--color-blue-1{background:#f2f6f7}.expert-review--color-blue-1 .expert-review-button,.expert-review--color-blue-1 .expert-review-expert-bio__avatar,.expert-review--color-blue-1 .expert-review-qa__avatar,.expert-review--color-blue-1 .expert-review-score-summary__average{background-color:#277f94}.expert-review--color-blue-1 .expert-review-expert-bio-name,.expert-review--color-blue-1 .expert-review-expert-header,.expert-review--color-blue-1 .expert-review-pluses-minuses-header,.expert-review--color-blue-1 .expert-review-qa-header,.expert-review--color-blue-1 .expert-review-score-header,.expert-review--color-blue-1 .expert-review-score-line__score{color:#277f94}.expert-review--color-blue-1 .expert-review-qa__text,.expert-review--color-blue-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(144,178,186,.1);box-shadow:0 1px 10px rgba(144,178,186,.1)}.expert-review--color-blue-1 .expert-review-score-line__progress-fill{background:#277f94;background-image:-webkit-gradient(linear,left top,right top,from(#277f94),to(#07add4));background-image:linear-gradient(to right,#277f94,#07add4)}.expert-review--color-blue-2{background:#f1f3f8}.expert-review--color-blue-2 .expert-review-button,.expert-review--color-blue-2 .expert-review-expert-bio__avatar,.expert-review--color-blue-2 .expert-review-qa__avatar,.expert-review--color-blue-2 .expert-review-score-summary__average{background-color:#1f3ea1}.expert-review--color-blue-2 .expert-review-expert-bio-name,.expert-review--color-blue-2 .expert-review-expert-header,.expert-review--color-blue-2 .expert-review-pluses-minuses-header,.expert-review--color-blue-2 .expert-review-qa-header,.expert-review--color-blue-2 .expert-review-score-header,.expert-review--color-blue-2 .expert-review-score-line__score{color:#1f3ea1}.expert-review--color-blue-2 .expert-review-qa__text,.expert-review--color-blue-2 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(153,163,197,.1);box-shadow:0 1px 10px rgba(153,163,197,.1)}.expert-review--color-blue-2 .expert-review-score-line__progress-fill{background:#1f3ea1;background-image:-webkit-gradient(linear,left top,right top,from(#1f3ea1),to(#1a6fcf));background-image:linear-gradient(to right,#1f3ea1,#1a6fcf)}.expert-review--color-pink-1{background:#f8f1f8}.expert-review--color-pink-1 .expert-review-button,.expert-review--color-pink-1 .expert-review-expert-bio__avatar,.expert-review--color-pink-1 .expert-review-qa__avatar,.expert-review--color-pink-1 .expert-review-score-summary__average{background-color:#97249d}.expert-review--color-pink-1 .expert-review-expert-bio-name,.expert-review--color-pink-1 .expert-review-expert-header,.expert-review--color-pink-1 .expert-review-pluses-minuses-header,.expert-review--color-pink-1 .expert-review-qa-header,.expert-review--color-pink-1 .expert-review-score-header,.expert-review--color-pink-1 .expert-review-score-line__score{color:#97249d}.expert-review--color-pink-1 .expert-review-qa__text,.expert-review--color-pink-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(201,162,203,.1);box-shadow:0 1px 10px rgba(201,162,203,.1)}.expert-review--color-pink-1 .expert-review-score-line__progress-fill{background:#97249d;background-image:-webkit-gradient(linear,left top,right top,from(#97249d),to(#cd23ab));background-image:linear-gradient(to right,#97249d,#cd23ab)}.expert-review--color-red-1{background:#faf2f4}.expert-review--color-red-1 .expert-review-button,.expert-review--color-red-1 .expert-review-expert-bio__avatar,.expert-review--color-red-1 .expert-review-qa__avatar,.expert-review--color-red-1 .expert-review-score-summary__average{background-color:#bc2042}.expert-review--color-red-1 .expert-review-expert-bio-name,.expert-review--color-red-1 .expert-review-expert-header,.expert-review--color-red-1 .expert-review-pluses-minuses-header,.expert-review--color-red-1 .expert-review-qa-header,.expert-review--color-red-1 .expert-review-score-header,.expert-review--color-red-1 .expert-review-score-line__score{color:#bc2042}.expert-review--color-red-1 .expert-review-qa__text,.expert-review--color-red-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(205,162,171,.1);box-shadow:0 1px 10px rgba(205,162,171,.1)}.expert-review--color-red-1 .expert-review-score-line__progress-fill{background:#bc2042;background-image:-webkit-gradient(linear,left top,right top,from(#bc2042),to(#e84c44));background-image:linear-gradient(to right,#bc2042,#e84c44)}.expert-review--color-orange-1{background:#fbf6f3}.expert-review--color-orange-1 .expert-review-button,.expert-review--color-orange-1 .expert-review-expert-bio__avatar,.expert-review--color-orange-1 .expert-review-qa__avatar,.expert-review--color-orange-1 .expert-review-score-summary__average{background-color:#e99400}.expert-review--color-orange-1 .expert-review-expert-bio-name,.expert-review--color-orange-1 .expert-review-expert-header,.expert-review--color-orange-1 .expert-review-pluses-minuses-header,.expert-review--color-orange-1 .expert-review-qa-header,.expert-review--color-orange-1 .expert-review-score-header,.expert-review--color-orange-1 .expert-review-score-line__score{color:#e99400}.expert-review--color-orange-1 .expert-review-qa__text,.expert-review--color-orange-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(210,198,170,.1);box-shadow:0 1px 10px rgba(210,198,170,.1)}.expert-review--color-orange-1 .expert-review-score-line__progress-fill{background:#e99400;background-image:-webkit-gradient(linear,left top,right top,from(#e99400),to(#ffc555));background-image:linear-gradient(to right,#e99400,#ffc555)}.expert-review--color-green-1{background:#f4f5ed}.expert-review--color-green-1 .expert-review-button,.expert-review--color-green-1 .expert-review-expert-bio__avatar,.expert-review--color-green-1 .expert-review-qa__avatar,.expert-review--color-green-1 .expert-review-score-summary__average{background-color:#828f11}.expert-review--color-green-1 .expert-review-expert-bio-name,.expert-review--color-green-1 .expert-review-expert-header,.expert-review--color-green-1 .expert-review-pluses-minuses-header,.expert-review--color-green-1 .expert-review-qa-header,.expert-review--color-green-1 .expert-review-score-header,.expert-review--color-green-1 .expert-review-score-line__score{color:#828f11}.expert-review--color-green-1 .expert-review-qa__text,.expert-review--color-green-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(210,214,175,.1);box-shadow:0 1px 10px rgba(210,214,175,.1)}.expert-review--color-green-1 .expert-review-score-line__progress-fill{background:#828f11;background-image:-webkit-gradient(linear,left top,right top,from(#828f11),to(#acbf09));background-image:linear-gradient(to right,#828f11,#acbf09)}.expert-review--color-green-2{background:#f4f7f1}.expert-review--color-green-2 .expert-review-button,.expert-review--color-green-2 .expert-review-expert-bio__avatar,.expert-review--color-green-2 .expert-review-qa__avatar,.expert-review--color-green-2 .expert-review-score-summary__average{background-color:#518f11}.expert-review--color-green-2 .expert-review-expert-bio-name,.expert-review--color-green-2 .expert-review-expert-header,.expert-review--color-green-2 .expert-review-pluses-minuses-header,.expert-review--color-green-2 .expert-review-qa-header,.expert-review--color-green-2 .expert-review-score-header,.expert-review--color-green-2 .expert-review-score-line__score{color:#518f11}.expert-review--color-green-2 .expert-review-qa__text,.expert-review--color-green-2 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(185,207,162,.1);box-shadow:0 1px 10px rgba(185,207,162,.1)}.expert-review--color-green-2 .expert-review-score-line__progress-fill{background:#518f11;background-image:-webkit-gradient(linear,left top,right top,from(#518f11),to(#66be0a));background-image:linear-gradient(to right,#518f11,#66be0a)}.expert-review--color-gray-1{background:#f8f8f9}.expert-review--color-gray-1 .expert-review-button,.expert-review--color-gray-1 .expert-review-expert-bio__avatar,.expert-review--color-gray-1 .expert-review-qa__avatar,.expert-review--color-gray-1 .expert-review-score-summary__average{background-color:#312d4b}.expert-review--color-gray-1 .expert-review-expert-bio-name,.expert-review--color-gray-1 .expert-review-expert-header,.expert-review--color-gray-1 .expert-review-pluses-minuses-header,.expert-review--color-gray-1 .expert-review-qa-header,.expert-review--color-gray-1 .expert-review-score-header,.expert-review--color-gray-1 .expert-review-score-line__score{color:#312d4b}.expert-review--color-gray-1 .expert-review-qa__text,.expert-review--color-gray-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(170,165,195,.1);box-shadow:0 1px 10px rgba(170,165,195,.1)}.expert-review--color-gray-1 .expert-review-score-line__progress-fill{background:#312d4b;background-image:-webkit-gradient(linear,left top,right top,from(#312d4b),to(#797495));background-image:linear-gradient(to right,#312d4b,#797495)}.expert-review--color-gray-2{background:#f7f7f7}.expert-review--color-gray-2 .expert-review-button,.expert-review--color-gray-2 .expert-review-expert-bio__avatar,.expert-review--color-gray-2 .expert-review-qa__avatar,.expert-review--color-gray-2 .expert-review-score-summary__average{background-color:#626262}.expert-review--color-gray-2 .expert-review-expert-bio-name,.expert-review--color-gray-2 .expert-review-expert-header,.expert-review--color-gray-2 .expert-review-pluses-minuses-header,.expert-review--color-gray-2 .expert-review-qa-header,.expert-review--color-gray-2 .expert-review-score-header,.expert-review--color-gray-2 .expert-review-score-line__score{color:#626262}.expert-review--color-gray-2 .expert-review-qa__text,.expert-review--color-gray-2 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(170,165,195,.1);box-shadow:0 1px 10px rgba(170,165,195,.1)}.expert-review--color-gray-2 .expert-review-score-line__progress-fill{background:#626262;background-image:-webkit-gradient(linear,left top,right top,from(#626262),to(#9a9a9a));background-image:linear-gradient(to right,#626262,#9a9a9a)}.expert-review--color-black-1{background:#f7f7f7}.expert-review--color-black-1 .expert-review-button,.expert-review--color-black-1 .expert-review-expert-bio__avatar,.expert-review--color-black-1 .expert-review-qa__avatar,.expert-review--color-black-1 .expert-review-score-summary__average{background-color:#111}.expert-review--color-black-1 .expert-review-expert-bio-name,.expert-review--color-black-1 .expert-review-expert-header,.expert-review--color-black-1 .expert-review-pluses-minuses-header,.expert-review--color-black-1 .expert-review-qa-header,.expert-review--color-black-1 .expert-review-score-header,.expert-review--color-black-1 .expert-review-score-line__score{color:#111}.expert-review--color-black-1 .expert-review-qa__text,.expert-review--color-black-1 .expert-review-score-line__progress-fill{-webkit-box-shadow:0 1px 10px rgba(216,216,216,.1);box-shadow:0 1px 10px rgba(216,216,216,.1)}.expert-review--color-black-1 .expert-review-score-line__progress-fill{background:#111;background-image:-webkit-gradient(linear,left top,right top,from(#111),to(#555));background-image:linear-gradient(to right,#111,#555)}.expert-review-likes{margin:30px -5px 20px;font-size:16px;color:#111}.expert-review-likes__button{display:inline-block;margin-bottom:10px;margin-left:5px;margin-right:5px;padding:.3em .8em;font-weight:400;color:#111;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border:none;font-size:1em;line-height:1.5;border-radius:.2em;-webkit-transition:all .2s;transition:all .2s;text-transform:initial}.expert-review-likes__button.disabled{opacity:.8}.expert-review-likes__button.loading{-webkit-animation:loading 1s linear infinite;animation:loading 1s linear infinite}.expert-review-likes__button:focus{outline:0}.expert-review-likes__icon svg{display:inline-block;font-size:inherit;width:1em;height:1em;overflow:visible;vertical-align:-.125em}.expert-review-likes__label{font-size:.9em}.expert-review-likes__count{font-size:.8em;opacity:.5}.expert-review-likes .expert-review-likes__icon+.expert-review-likes__label{margin-left:.4em}.expert-review-likes .expert-review-likes__icon+.expert-review-likes__count:not(:empty),.expert-review-likes .expert-review-likes__label+.expert-review-likes__count:not(:empty){margin-left:.5em}.comment .expert-review-likes{margin:15px 0}@-webkit-keyframes loading{0%{opacity:.8}50%{opacity:.5}100%{opacity:.8}}@keyframes loading{0%{opacity:.8}50%{opacity:.5}100%{opacity:.8}}.expert-review-likes--size-xs{font-size:12px}.expert-review-likes--size-s{font-size:14px}.expert-review-likes--size-l{font-size:18px}.expert-review-likes--size-xl{font-size:20px}.expert-review-likes--size-xxl{font-size:22px}.expert-review-likes--alignment-left{text-align:left}.expert-review-likes--alignment-center{text-align:center}.expert-review-likes--alignment-right{text-align:right}.expert-review-likes--style-simple-1 .expert-review-likes__button--like.voted,.expert-review-likes--style-simple-1 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-simple-1 .expert-review-likes__button--like:not(.loading):hover{color:#1d8200}.expert-review-likes--style-simple-1 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-simple-1 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-simple-1 .expert-review-likes__button--dislike:not(.loading):hover{color:#d30b17}.expert-review-likes--style-button-1 .expert-review-likes__button{-webkit-box-shadow:0 4px 10px -2px rgba(25,0,57,.2);box-shadow:0 4px 10px -2px rgba(25,0,57,.2)}.expert-review-likes--style-button-1 .expert-review-likes__button--like.voted,.expert-review-likes--style-button-1 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-1 .expert-review-likes__button--like:not(.loading):hover{color:#fff;background:#1d8200}.expert-review-likes--style-button-1 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-1 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-1 .expert-review-likes__button--dislike:not(.loading):hover{color:#fff;background:#d30b17}.expert-review-likes--style-button-1-color .expert-review-likes__button{-webkit-box-shadow:0 4px 10px -2px rgba(25,0,57,.2);box-shadow:0 4px 10px -2px rgba(25,0,57,.2)}.expert-review-likes--style-button-1-color .expert-review-likes__button.voted,.expert-review-likes--style-button-1-color .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-1-color .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-1-color .expert-review-likes__button--like .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-button-1-color .expert-review-likes__button--like.voted,.expert-review-likes--style-button-1-color .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-1-color .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-1-color .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-button-1-color .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-1-color .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-1-color .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-2 .expert-review-likes__button{-webkit-box-shadow:inset 0 0 0 2px rgba(34,34,34,.1);box-shadow:inset 0 0 0 2px rgba(34,34,34,.1)}.expert-review-likes--style-button-2 .expert-review-likes__button.voted,.expert-review-likes--style-button-2 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-2 .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-2 .expert-review-likes__button--like.voted,.expert-review-likes--style-button-2 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-2 .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-2 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-2 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-2 .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-2-color .expert-review-likes__button{-webkit-box-shadow:inset 0 0 0 2px rgba(34,34,34,.1);box-shadow:inset 0 0 0 2px rgba(34,34,34,.1)}.expert-review-likes--style-button-2-color .expert-review-likes__button.voted,.expert-review-likes--style-button-2-color .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-2-color .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-2-color .expert-review-likes__button--like .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-button-2-color .expert-review-likes__button--like.voted,.expert-review-likes--style-button-2-color .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-2-color .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-2-color .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-button-2-color .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-2-color .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-2-color .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-3 .expert-review-likes__button{padding:.3em 1.2em;-webkit-box-shadow:inset 0 0 0 1px rgba(34,34,34,.1);box-shadow:inset 0 0 0 1px rgba(34,34,34,.1);border-radius:30px}.expert-review-likes--style-button-3 .expert-review-likes__button.voted,.expert-review-likes--style-button-3 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-3 .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-3 .expert-review-likes__button--like.voted,.expert-review-likes--style-button-3 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-3 .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-3 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-3 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-3 .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-3-color .expert-review-likes__button{padding:.3em 1.2em;-webkit-box-shadow:inset 0 0 0 1px rgba(34,34,34,.1);box-shadow:inset 0 0 0 1px rgba(34,34,34,.1);border-radius:30px}.expert-review-likes--style-button-3-color .expert-review-likes__button.voted,.expert-review-likes--style-button-3-color .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-3-color .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-3-color .expert-review-likes__button--like .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-button-3-color .expert-review-likes__button--like.voted,.expert-review-likes--style-button-3-color .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-3-color .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-3-color .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-button-3-color .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-3-color .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-3-color .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-4 .expert-review-likes__button{padding:.3em 1.2em;border-radius:30px;background:-webkit-gradient(linear,left top,left bottom,from(#f7f7f7),to(#e6e6e6));background:linear-gradient(#f7f7f7,#e6e6e6);-webkit-box-shadow:0 15px 15px -12px rgba(0,0,0,.3);box-shadow:0 15px 15px -12px rgba(0,0,0,.3)}.expert-review-likes--style-button-4 .expert-review-likes__button.voted,.expert-review-likes--style-button-4 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-4 .expert-review-likes__button:not(.loading):hover{-webkit-transform:translate3d(0,-2px,0);transform:translate3d(0,-2px,0)}.expert-review-likes--style-button-4 .expert-review-likes__icon{-webkit-transition:all .2s;transition:all .2s}.expert-review-likes--style-button-4 .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-button-4 .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-4 .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-button-4 .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-button-4 .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-4 .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-button-5 .expert-review-likes__button{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05),0 1px 0 1px rgba(0,0,0,.05),0 4px 6px 0 rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05),0 1px 0 1px rgba(0,0,0,.05),0 4px 6px 0 rgba(0,0,0,.05)}.expert-review-likes--style-button-5 .expert-review-likes__button.voted,.expert-review-likes--style-button-5 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-button-5 .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-button-5 .expert-review-likes__button--like .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-button-5 .expert-review-likes__button--like.voted,.expert-review-likes--style-button-5 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-button-5 .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-button-5 .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-button-5 .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-5 .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-button-5 .expert-review-likes__button--dislike .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-button-5 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-button-5 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-button-5 .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-button-5 .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-button-5 .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-button-5 .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-vertical-1.expert-review-likes--alignment-center .expert-review-likes__button{margin-left:auto!important;margin-right:auto!important}.expert-review-likes--style-vertical-1.expert-review-likes--alignment-right .expert-review-likes__button{margin-left:auto!important;margin-right:0!important}.expert-review-likes--style-vertical-1 .expert-review-likes__button{width:100%;max-width:400px;margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;text-align:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05),0 1px 0 1px rgba(0,0,0,.05),0 4px 6px 0 rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05),0 1px 0 1px rgba(0,0,0,.05),0 4px 6px 0 rgba(0,0,0,.05)}.expert-review-likes--style-vertical-1 .expert-review-likes__button.voted,.expert-review-likes--style-vertical-1 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-vertical-1 .expert-review-likes__button:not(.loading):hover{color:#fff}.expert-review-likes--style-vertical-1 .expert-review-likes__button .expert-review-likes__count,.expert-review-likes--style-vertical-1 .expert-review-likes__button .expert-review-likes__icon,.expert-review-likes--style-vertical-1 .expert-review-likes__button .expert-review-likes__label{position:relative;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.expert-review-likes--style-vertical-1 .expert-review-likes__button .expert-review-likes__icon{max-width:25px;-webkit-box-flex:0;-ms-flex:0 0 25px;flex:0 0 25px}.expert-review-likes--style-vertical-1 .expert-review-likes__button .expert-review-likes__count{max-width:40px;-webkit-box-flex:0;-ms-flex:0 0 40px;flex:0 0 40px;text-align:right;white-space:nowrap}.expert-review-likes--style-vertical-1 .expert-review-likes__button--like .expert-review-likes__icon{color:#1d8200}.expert-review-likes--style-vertical-1 .expert-review-likes__button--like.voted,.expert-review-likes--style-vertical-1 .expert-review-likes__button--like:not(.loading):focus,.expert-review-likes--style-vertical-1 .expert-review-likes__button--like:not(.loading):hover{background:#1d8200}.expert-review-likes--style-vertical-1 .expert-review-likes__button--like.voted .expert-review-likes__icon,.expert-review-likes--style-vertical-1 .expert-review-likes__button--like:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-vertical-1 .expert-review-likes__button--like:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike .expert-review-likes__icon{color:#d30b17}.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike.voted,.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike:not(.loading):focus,.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike:not(.loading):hover{background:#d30b17}.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike.voted .expert-review-likes__icon,.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike:not(.loading):focus .expert-review-likes__icon,.expert-review-likes--style-vertical-1 .expert-review-likes__button--dislike:not(.loading):hover .expert-review-likes__icon{color:#fff}.expert-review-likes--style-color-1 .expert-review-likes__button{color:#fff}.expert-review-likes--style-color-1 .expert-review-likes__button.voted,.expert-review-likes--style-color-1 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-color-1 .expert-review-likes__button:not(.loading):hover{-webkit-box-shadow:inset 0 -10px 20px rgba(0,0,0,.3);box-shadow:inset 0 -10px 20px rgba(0,0,0,.3)}.expert-review-likes--style-color-1 .expert-review-likes__button--like{background:#1d8200}.expert-review-likes--style-color-1 .expert-review-likes__button--dislike{background:#d30b17}.expert-review-likes--style-color-2 .expert-review-likes__button{padding:.3em 1.2em;border-radius:30px;color:#fff}.expert-review-likes--style-color-2 .expert-review-likes__button.voted,.expert-review-likes--style-color-2 .expert-review-likes__button:not(.loading):focus,.expert-review-likes--style-color-2 .expert-review-likes__button:not(.loading):hover{-webkit-box-shadow:inset 0 -10px 20px rgba(0,0,0,.3);box-shadow:inset 0 -10px 20px rgba(0,0,0,.3)}.expert-review-likes--style-color-2 .expert-review-likes__button--like{background:#1d8200}.expert-review-likes--style-color-2 .expert-review-likes__button--dislike{background:#d30b17}.expert-review-like-rating{background:#fff;margin:2em 0}.expert-review-like-rating__header{padding:1em 0 1em;font-weight:700;font-size:1.1em}@media (min-width:768px){.expert-review-like-rating__header{font-size:1.3em}}@media (min-width:992px){.expert-review-like-rating__header{font-size:1.4em}}.expert-review-like-rating__list{counter-reset:num}.expert-review-like-rating .expert-review-like-rating-item:nth-child(odd){background:#f3f4f4}.expert-review-like-rating-item{padding:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:576px){.expert-review-like-rating-item{padding:15px 20px}}.expert-review-like-rating-item__count,.expert-review-like-rating-item__position,.expert-review-like-rating-item__text{position:relative;width:100%;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.expert-review-like-rating-item__position{-webkit-box-flex:0;-ms-flex:0 0 30px;flex:0 0 30px;max-width:30px;margin-right:20px;font-weight:700}.expert-review-like-rating-item__position:before{content:counter(num) ".";counter-increment:num}@media (min-width:768px){.expert-review-like-rating-item__text{font-size:1.1em}}.expert-review-like-rating-item__count{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;max-width:100px;margin-left:20px;text-align:right}.expert-review-like-rating--style-1 .expert-review-like-rating-item{border-radius:10px}.expert-review-like-rating--style-1 .expert-review-like-rating-item__position{-webkit-box-flex:0;-ms-flex:0 0 50px;flex:0 0 50px;max-width:50px}.expert-review-like-rating--style-1 .expert-review-like-rating-item__position:before{content:counter(num);display:inline-block;width:50px;height:50px;border:2px solid rgba(0,0,0,.08);text-align:center;line-height:48px;border-radius:50px}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(odd){background:#f6f6f8}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(1),.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(2),.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(3){margin-bottom:3px}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(1) .expert-review-like-rating-item__position:before,.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(2) .expert-review-like-rating-item__position:before,.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(3) .expert-review-like-rating-item__position:before{font-weight:700;color:#fff;border:none;line-height:50px}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(1){background:#fef6e0}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(1) .expert-review-like-rating-item__position:before{background:-webkit-gradient(linear,left top,left bottom,from(#f6d365),to(#fda085)) no-repeat;background:linear-gradient(180deg,#f6d365 0,#fda085 100%) no-repeat}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(2) .expert-review-like-rating-item__position:before{background:linear-gradient(-45deg,#93a5cf 0,#e4efe9 100%)}.expert-review-like-rating--style-1 .expert-review-like-rating-item:nth-child(3) .expert-review-like-rating-item__position:before{background:linear-gradient(-45deg,#c79081 0,#f1c1a1 100%)}.expert-review-like-rating--style-2 .expert-review-like-rating-item{padding:10px 0;border-bottom:1px solid #f6f6f8}.expert-review-like-rating--style-2 .expert-review-like-rating-item:nth-child(odd){background:0 0}.expert-review-like-rating--style-2 .expert-review-like-rating-item__position:before{content:counter(num);font-size:1.5em}.expert-review-like-rating--style-2 .expert-review-like-rating-item__text{font-size:1.2em}.expert-review-like-rating--table-1{border:2px solid #f6f6f8}.expert-review-like-rating--table-1 .expert-review-like-rating__header{text-align:center;padding:1em 0 1em}@media (min-width:768px){.expert-review-like-rating--table-1 .expert-review-like-rating__header{font-size:1.2em}}.expert-review-like-rating--table-1 .expert-review-like-rating-item{padding:0;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.expert-review-like-rating--table-1 .expert-review-like-rating-item:nth-child(odd){background:#f6f6f8}.expert-review-like-rating--table-1 .expert-review-like-rating-item:nth-child(odd) .expert-review-like-rating-item__position{border-right-color:#fff}.expert-review-like-rating--table-1 .expert-review-like-rating-item:nth-child(odd) .expert-review-like-rating-item__count{border-left-color:#fff}.expert-review-like-rating--table-1 .expert-review-like-rating-item__position{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;max-width:60px;border-right:2px solid #f6f6f8;text-align:center;padding:15px;margin-right:0}.expert-review-like-rating--table-1 .expert-review-like-rating-item__position:before{content:counter(num)}.expert-review-like-rating--table-1 .expert-review-like-rating-item__text{padding:15px 15px}.expert-review-like-rating--table-1 .expert-review-like-rating-item__count{margin-left:0;border-left:2px solid #f6f6f8;text-align:center;padding:15px}.expert-review-faq{margin:2em 0}.expert-review-faq__header{padding:1em 0 1em;font-weight:700;font-size:1.1em}@media (min-width:768px){.expert-review-faq__header{font-size:1.3em}}@media (min-width:992px){.expert-review-faq__header{font-size:1.4em}}.expert-review-faq-item{position:relative;margin-bottom:1.5em}.expert-review-faq-item:after,.expert-review-faq-item:before{content:"";position:absolute;background:#ddd;-webkit-transition:all .2s;transition:all .2s;pointer-events:none}.expert-review-faq-item:before{top:13px;right:12px;width:2px;height:16px}.expert-review-faq-item:after{top:20px;right:5px;width:16px;height:2px}.expert-review-faq-item.expand:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.expert-review-faq-item.expand:after{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.expert-review-faq-item__question{padding:10px 30px 10px 0;font-weight:700;line-height:1.5;cursor:pointer}@media (min-width:768px){.expert-review-faq-item__question{font-size:1.05em}}.expert-review-faq-item__answer{font-size:.95em}.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#aaa}.expert-review-faq--style-simple-1 .expert-review-faq-item:before{top:16px;left:9px;width:2px;height:10px}.expert-review-faq--style-simple-1 .expert-review-faq-item:after{top:20px;left:5px;width:10px;height:2px}.expert-review-faq--style-simple-1 .expert-review-faq-item__question{padding:10px 0 10px 35px}.expert-review-faq--style-simple-1 .expert-review-faq-item__answer{padding-left:35px}.expert-review-faq--style-style-1 .expert-review-faq-item{background:#fff;-webkit-box-shadow:0 5px 25px -6px rgba(0,0,0,.2);box-shadow:0 5px 25px -6px rgba(0,0,0,.2);border-radius:10px}.expert-review-faq--style-style-1 .expert-review-faq-item:before{top:19px;left:22px;width:2px;height:16px}.expert-review-faq--style-style-1 .expert-review-faq-item:after{top:26px;left:15px;width:16px;height:2px}.expert-review-faq--style-style-1 .expert-review-faq-item__question{padding:15px 25px 15px 45px}.expert-review-faq--style-style-1 .expert-review-faq-item__answer{padding:5px 25px 15px}.expert-review-faq--style-style-2 .expert-review-faq-item{background:#fff;border:1px solid #eee;margin-bottom:-1px}.expert-review-faq--style-style-2 .expert-review-faq-item:before{top:18px;right:21px}.expert-review-faq--style-style-2 .expert-review-faq-item:after{top:25px;right:14px}.expert-review-faq--style-style-2 .expert-review-faq-item.expand{z-index:2}.expert-review-faq--style-style-2 .expert-review-faq-item__question{font-size:1em;padding:15px 40px 15px 25px;-webkit-transition:all .2s;transition:all .2s}.expert-review-faq--style-style-2 .expert-review-faq-item__question:hover{background:rgba(0,0,0,.02)}.expert-review-faq--style-style-2 .expert-review-faq-item__answer{padding:25px 25px;border-top:1px solid #eee}.expert-review-faq--style-style-3 .expert-review-faq-item{position:relative;margin-bottom:5px;background:#fff}.expert-review-faq--style-style-3 .expert-review-faq-item:before{top:23px;right:22px}.expert-review-faq--style-style-3 .expert-review-faq-item:after{top:30px;right:15px}.expert-review-faq--style-style-3 .expert-review-faq-item:last-child{border-bottom:none}.expert-review-faq--style-style-3 .expert-review-faq-item__question{font-weight:400;position:relative;padding:20px 40px;background:rgba(0,0,0,.03);border-radius:4px}.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{content:"";position:absolute;top:calc(20px + .45em);left:15px;display:inline-block;width:8px;height:8px;background:#000;border-radius:50%}.expert-review-faq--style-style-3 .expert-review-faq-item__answer{padding:15px 25px 25px}.expert-review-faq--style-style-4 .expert-review-faq-item{margin-bottom:5px}.expert-review-faq--style-style-4 .expert-review-faq-item:before{top:23px;right:22px}.expert-review-faq--style-style-4 .expert-review-faq-item:after{top:30px;right:15px}.expert-review-faq--style-style-4 .expert-review-faq-item__question{font-weight:400;background:#000;color:#fff;padding:20px 45px 20px 20px;border-radius:4px}.expert-review-faq--style-style-4 .expert-review-faq-item__question a{color:#fff}.expert-review-faq--style-style-4 .expert-review-faq-item__answer{padding:20px 20px 30px}.expert-review-faq--color-purple-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-purple-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(62.1146496815,6.7515923567,99.2484076433,.2);box-shadow:0 5px 25px -6px rgba(62.1146496815,6.7515923567,99.2484076433,.2)}.expert-review-faq--color-purple-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-purple-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-purple-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(92,10,147,.05)}.expert-review-faq--color-purple-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-purple-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#5c0a93}.expert-review-faq--color-purple-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(62.1146496815,6.7515923567,99.2484076433)}.expert-review-faq--color-purple-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#5c0a93}.expert-review-faq--color-blue-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-blue-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(28.3636363636,92.3636363636,107.6363636364,.2);box-shadow:0 5px 25px -6px rgba(28.3636363636,92.3636363636,107.6363636364,.2)}.expert-review-faq--color-blue-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-blue-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-blue-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(39,127,148,.05)}.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#277f94}.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(28.3636363636,92.3636363636,107.6363636364)}.expert-review-faq--color-blue-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#277f94}.expert-review-faq--color-blue-2.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-blue-2.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(22.765625,45.53125,118.234375,.2);box-shadow:0 5px 25px -6px rgba(22.765625,45.53125,118.234375,.2)}.expert-review-faq--color-blue-2.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-blue-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-blue-2.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(31,62,161,.05)}.expert-review-faq--color-blue-2.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-blue-2.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#1f3ea1}.expert-review-faq--color-blue-2.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(22.765625,45.53125,118.234375)}.expert-review-faq--color-blue-2.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#1f3ea1}.expert-review-faq--color-pink-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-pink-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(111.0984455959,26.4870466321,115.5129533679,.2);box-shadow:0 5px 25px -6px rgba(111.0984455959,26.4870466321,115.5129533679,.2)}.expert-review-faq--color-pink-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-pink-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-pink-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(151,36,157,.05)}.expert-review-faq--color-pink-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-pink-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#97249d}.expert-review-faq--color-pink-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(111.0984455959,26.4870466321,115.5129533679)}.expert-review-faq--color-pink-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#97249d}.expert-review-faq--color-red-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-red-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(144.4181818182,24.5818181818,50.7,.2);box-shadow:0 5px 25px -6px rgba(144.4181818182,24.5818181818,50.7,.2)}.expert-review-faq--color-red-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-red-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-red-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(188,32,66,.05)}.expert-review-faq--color-red-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-red-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#bc2042}.expert-review-faq--color-red-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(144.4181818182,24.5818181818,50.7)}.expert-review-faq--color-red-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#bc2042}.expert-review-faq--color-orange-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-orange-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(182,115.6051502146,0,.2);box-shadow:0 5px 25px -6px rgba(182,115.6051502146,0,.2)}.expert-review-faq--color-orange-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-orange-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-orange-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(233,148,0,.05)}.expert-review-faq--color-orange-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-orange-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#e99400}.expert-review-faq--color-orange-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(182,115.6051502146,0)}.expert-review-faq--color-orange-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#e99400}.expert-review-faq--color-green-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-green-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(88.5625,97.41875,11.58125,.2);box-shadow:0 5px 25px -6px rgba(88.5625,97.41875,11.58125,.2)}.expert-review-faq--color-green-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-green-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-green-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(130,143,17,.05)}.expert-review-faq--color-green-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-green-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#828f11}.expert-review-faq--color-green-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(88.5625,97.41875,11.58125)}.expert-review-faq--color-green-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#828f11}.expert-review-faq--color-green-2.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-green-2.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(55.18125,97.41875,11.58125,.2);box-shadow:0 5px 25px -6px rgba(55.18125,97.41875,11.58125,.2)}.expert-review-faq--color-green-2.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-green-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-green-2.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(81,143,17,.05)}.expert-review-faq--color-green-2.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-green-2.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#518f11}.expert-review-faq--color-green-2.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(55.18125,97.41875,11.58125)}.expert-review-faq--color-green-2.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#518f11}.expert-review-faq--color-gray-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-gray-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(28.175,25.875,43.125,.2);box-shadow:0 5px 25px -6px rgba(28.175,25.875,43.125,.2)}.expert-review-faq--color-gray-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-gray-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-gray-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(49,45,75,.05)}.expert-review-faq--color-gray-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-gray-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#312d4b}.expert-review-faq--color-gray-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(28.175,25.875,43.125)}.expert-review-faq--color-gray-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#312d4b}.expert-review-faq--color-gray-2.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-gray-2.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px rgba(72.5,72.5,72.5,.2);box-shadow:0 5px 25px -6px rgba(72.5,72.5,72.5,.2)}.expert-review-faq--color-gray-2.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-gray-2.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-gray-2.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(98,98,98,.05)}.expert-review-faq--color-gray-2.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-gray-2.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#626262}.expert-review-faq--color-gray-2.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:rgb(72.5,72.5,72.5)}.expert-review-faq--color-gray-2.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#626262}.expert-review-faq--color-black-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,.expert-review-faq--color-black-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before{background:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-1 .expert-review-faq-item{-webkit-box-shadow:0 5px 25px -6px hsla(0,0%,-3.3333333333%,.2);box-shadow:0 5px 25px -6px hsla(0,0%,-3.3333333333%,.2)}.expert-review-faq--color-black-1.expert-review-faq--style-style-1 .expert-review-faq-item__question{color:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand,.expert-review-faq--color-black-1.expert-review-faq--style-style-2 .expert-review-faq-item.expand .expert-review-faq-item__answer{border-color:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-2 .expert-review-faq-item:after,.expert-review-faq--color-black-1.expert-review-faq--style-style-2 .expert-review-faq-item:before{background:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-2 .expert-review-faq-item__question :hover{background:rgba(17,17,17,.05)}.expert-review-faq--color-black-1.expert-review-faq--style-style-3 .expert-review-faq-item:after,.expert-review-faq--color-black-1.expert-review-faq--style-style-3 .expert-review-faq-item:before{background:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover{color:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before{background-color:#111}.expert-review-faq--color-black-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer{color:hsl(0,0%,-3.3333333333%)}.expert-review-faq--color-black-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{background-color:#111}.expert-review-poll{position:relative;margin:2em 0;padding:10px 20px;border-radius:5px}.expert-review-poll__header{padding:.4em 0 .6em;font-weight:700}@media (min-width:768px){.expert-review-poll__header{font-size:1.2em}}@media (min-width:992px){.expert-review-poll__header{font-size:1.3em}}.expert-review-poll__count{font-size:.8em;margin:.3em 0 .4em;opacity:.7}.expert-review-poll__result-button{border:none;cursor:pointer;border-radius:5px;-webkit-transition:.2s all;transition:.2s all;padding:5px 15px}.expert-review-poll__result-button:focus{border:none;outline:0}.expert-review-poll.voted .expert-review-poll-item{padding-right:50px;padding-left:15px}.expert-review-poll.voted .expert-review-poll-item:not(.voted):before{opacity:0}.expert-review-poll.voted .expert-review-poll-item.voted{padding-left:40px}.expert-review-poll.voted .expert-review-poll-item__progress{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.expert-review-poll.voted .expert-review-poll-item__num{opacity:.8;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.expert-review-poll:not(.voted) .expert-review-poll-item{cursor:pointer}.expert-review-poll__loader{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background:rgba(255,255,255,.5)}.expert-review-poll__loader span{position:absolute;top:calc(50% - 15px);left:calc(50% - 15px);display:inline-block;border:4px solid rgba(0,0,0,.25);border-left-color:#00f;border-radius:50%;width:30px;height:30px;-webkit-animation:donut-spin 1.2s linear infinite;animation:donut-spin 1.2s linear infinite;-webkit-transform:translateZ(0);transform:translateZ(0)}.expert-review-poll-item{position:relative;margin:10px 0;padding:10px 15px 10px 40px;border-radius:5px;-webkit-transition:.2s all;transition:.2s all;line-height:1.5;overflow:hidden}.expert-review-poll-item:before{content:"";position:absolute;top:.85em;left:15px;display:inline-block;width:1em;height:1em;border:2px solid #000;border-radius:50%;-webkit-transition:.2s all;transition:.2s all}.expert-review-poll-item:after{content:"";position:absolute;top:.85em;left:15px;display:inline-block;width:1em;height:1em;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M432.4 181.3l-47.8-47.8-168.9 168.9-93.1-93.2-47.9 47.9 141 140.9z'/%3E%3C/svg%3E");-webkit-transition:.2s all;transition:.2s all;opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}.expert-review-poll:not(.voted) .expert-review-poll-item:hover{-webkit-transform:translate3d(-3px,0,0);transform:translate3d(-3px,0,0)}.expert-review-poll-item.voted:after{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.expert-review-poll-item__progress{position:absolute;left:0;bottom:0;height:3px;border-radius:3px;-webkit-transform:translate3d(0,3px,0);transform:translate3d(0,3px,0);opacity:0;-webkit-transition:.2s all;transition:.2s all}.expert-review-poll-item__num{position:absolute;top:50%;right:15px;font-size:.8em;opacity:0;-webkit-transform:translate3d(100px,-50%,0);transform:translate3d(100px,-50%,0);-webkit-transition:.2s all;transition:.2s all}.expert-review-poll--style-light-1 .expert-review-poll-item,.expert-review-poll--style-light-1 .expert-review-poll__result-button{background:#fff;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.05);box-shadow:0 2px 4px rgba(0,0,0,.05)}.expert-review-poll--style-light-2{padding:0}.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-radius:25px;border:1px solid #eee;background:rgba(255,255,255,.1)}.expert-review-poll--style-light-2 .expert-review-poll-item{border:1px solid #eee;border-radius:25px;padding-left:50px}.expert-review-poll--style-light-2 .expert-review-poll-item:before{top:.7em;left:15px;display:inline-block;width:1.3em;height:1.3em}.expert-review-poll--style-light-2 .expert-review-poll-item:after{left:17px}.expert-review-poll--style-light-2 .expert-review-poll-item__progress{top:0;height:100%;border-radius:25px;background:rgba(0,0,0,.05)}.expert-review-poll--style-light-2.voted .expert-review-poll-item{padding-right:50px;padding-left:50px}.expert-review-poll--style-light-2.voted .expert-review-poll-item:not(.voted):before{opacity:1}.expert-review-poll--style-light-2.voted .expert-review-poll-item.voted{padding-left:50px}.expert-review-poll--style-light-2 .expert-review-poll__count{text-align:center}.expert-review-poll--style-solid-1 .expert-review-poll__header{text-align:center}.expert-review-poll--style-solid-1 .expert-review-poll__result-button{background:rgba(255,255,255,.1)}.expert-review-poll--style-solid-1 .expert-review-poll-item{background:rgba(255,255,255,.1);padding-right:40px;padding-left:15px}.expert-review-poll--style-solid-1 .expert-review-poll-item:before{display:none}.expert-review-poll--style-solid-1 .expert-review-poll-item__progress{top:0;height:100%;background:rgba(255,255,255,.1);-webkit-box-shadow:0 0 10px rgba(0,0,0,.05);box-shadow:0 0 10px rgba(0,0,0,.05)}.expert-review-poll--style-solid-1 .expert-review-poll__loader{background:rgba(0,0,0,.1)}.expert-review-poll--style-solid-1 .expert-review-poll__loader span{border:4px solid rgba(255,255,255,.25);border-left-color:#fff}.expert-review-poll--color-purple-1.expert-review-poll--style-light-1{background:rgba(92,10,147,.05)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(92,10,147,.4)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#5c0a93;background:#5c0a93}.expert-review-poll:not(.voted) .expert-review-poll--color-purple-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(92,10,147,.5)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(92,10,147,.5)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#5c0a93;background:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(92,10,147,.4)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(92,10,147,.08)}.expert-review-poll--color-purple-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-solid-1{color:#fff;background:#5c0a93}.expert-review-poll--color-purple-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-blue-1.expert-review-poll--style-light-1{background:rgba(39,127,148,.05)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(39,127,148,.4)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#277f94;background:#277f94}.expert-review-poll:not(.voted) .expert-review-poll--color-blue-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(39,127,148,.5)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(39,127,148,.5)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#277f94;background:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(39,127,148,.4)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(39,127,148,.08)}.expert-review-poll--color-blue-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-solid-1{color:#fff;background:#277f94}.expert-review-poll--color-blue-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-blue-2.expert-review-poll--style-light-1{background:rgba(31,62,161,.05)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(31,62,161,.4)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#1f3ea1;background:#1f3ea1}.expert-review-poll:not(.voted) .expert-review-poll--color-blue-2.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(31,62,161,.5)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(31,62,161,.5)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#1f3ea1;background:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(31,62,161,.4)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(31,62,161,.08)}.expert-review-poll--color-blue-2.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-solid-1{color:#fff;background:#1f3ea1}.expert-review-poll--color-blue-2.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-pink-1.expert-review-poll--style-light-1{background:rgba(151,36,157,.05)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(151,36,157,.4)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#97249d;background:#97249d}.expert-review-poll:not(.voted) .expert-review-poll--color-pink-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(151,36,157,.5)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(151,36,157,.5)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#97249d;background:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(151,36,157,.4)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(151,36,157,.08)}.expert-review-poll--color-pink-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-solid-1{color:#fff;background:#97249d}.expert-review-poll--color-pink-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-red-1.expert-review-poll--style-light-1{background:rgba(188,32,66,.05)}.expert-review-poll--color-red-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(188,32,66,.4)}.expert-review-poll--color-red-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#bc2042;background:#bc2042}.expert-review-poll:not(.voted) .expert-review-poll--color-red-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(188,32,66,.5)}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(188,32,66,.5)}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#bc2042;background:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(188,32,66,.4)}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(188,32,66,.08)}.expert-review-poll--color-red-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-solid-1{color:#fff;background:#bc2042}.expert-review-poll--color-red-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-orange-1.expert-review-poll--style-light-1{background:rgba(233,148,0,.05)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(233,148,0,.4)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#e99400;background:#e99400}.expert-review-poll:not(.voted) .expert-review-poll--color-orange-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(233,148,0,.5)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(233,148,0,.5)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#e99400;background:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(233,148,0,.4)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(233,148,0,.08)}.expert-review-poll--color-orange-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-solid-1{color:#fff;background:#e99400}.expert-review-poll--color-orange-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-green-1.expert-review-poll--style-light-1{background:rgba(130,143,17,.05)}.expert-review-poll--color-green-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(130,143,17,.4)}.expert-review-poll--color-green-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#828f11;background:#828f11}.expert-review-poll:not(.voted) .expert-review-poll--color-green-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(130,143,17,.5)}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(130,143,17,.5)}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#828f11;background:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(130,143,17,.4)}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(130,143,17,.08)}.expert-review-poll--color-green-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-solid-1{color:#fff;background:#828f11}.expert-review-poll--color-green-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-green-2.expert-review-poll--style-light-1{background:rgba(81,143,17,.05)}.expert-review-poll--color-green-2.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(81,143,17,.4)}.expert-review-poll--color-green-2.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#518f11;background:#518f11}.expert-review-poll:not(.voted) .expert-review-poll--color-green-2.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(81,143,17,.5)}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(81,143,17,.5)}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#518f11;background:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(81,143,17,.4)}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(81,143,17,.08)}.expert-review-poll--color-green-2.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-solid-1{color:#fff;background:#518f11}.expert-review-poll--color-green-2.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-gray-1.expert-review-poll--style-light-1{background:rgba(49,45,75,.05)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(49,45,75,.4)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#312d4b;background:#312d4b}.expert-review-poll:not(.voted) .expert-review-poll--color-gray-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(49,45,75,.5)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(49,45,75,.5)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#312d4b;background:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(49,45,75,.4)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(49,45,75,.08)}.expert-review-poll--color-gray-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-solid-1{color:#fff;background:#312d4b}.expert-review-poll--color-gray-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-gray-2.expert-review-poll--style-light-1{background:rgba(98,98,98,.05)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(98,98,98,.4)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#626262;background:#626262}.expert-review-poll:not(.voted) .expert-review-poll--color-gray-2.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(98,98,98,.5)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(98,98,98,.5)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#626262;background:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(98,98,98,.4)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(98,98,98,.08)}.expert-review-poll--color-gray-2.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-solid-1{color:#fff;background:#626262}.expert-review-poll--color-gray-2.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}.expert-review-poll--color-black-1.expert-review-poll--style-light-1{background:rgba(17,17,17,.05)}.expert-review-poll--color-black-1.expert-review-poll--style-light-1 .expert-review-poll-item:before{border-color:rgba(17,17,17,.4)}.expert-review-poll--color-black-1.expert-review-poll--style-light-1 .expert-review-poll-item.voted:before{border-color:#111;background:#111}.expert-review-poll:not(.voted) .expert-review-poll--color-black-1.expert-review-poll--style-light-1 .expert-review-poll-item:hover:before{border-color:#111}.expert-review-poll--color-black-1.expert-review-poll--style-light-1 .expert-review-poll-item__progress{background:#111}.expert-review-poll--color-black-1.expert-review-poll--style-light-1 .expert-review-poll__loader span{border-left-color:#111}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll__result-button{border-color:rgba(17,17,17,.5)}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll-item{border-color:rgba(17,17,17,.5)}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted{border-color:#111}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll-item.voted:before{border-color:#111;background:#111}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll-item:before{border-color:rgba(17,17,17,.4)}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll-item__progress{background:rgba(17,17,17,.08)}.expert-review-poll--color-black-1.expert-review-poll--style-light-2 .expert-review-poll__loader span{border-left-color:#111}.expert-review-poll--color-black-1.expert-review-poll--style-solid-1{color:#fff;background:#111}.expert-review-poll--color-black-1.expert-review-poll--style-solid-1 .expert-review-poll__result-button{color:#fff}/*!css.minimize.12bc6b933ff77MjQ0Njc5NA==af46b9e*/.expert-review-popup-holder{position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;display:block;background:rgba(0,0,0,.5);z-index:9998}.expert-review-popup{width:99%;max-width:400px;margin:30px auto 0;position:fixed;left:50%;top:50%;font-size:14px;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);z-index:9999}@media (min-width:768px){.expert-review-popup{width:500px}}.expert-review-popup__close{position:absolute;top:10px;right:10px;font-size:28px;line-height:1;cursor:pointer}.expert-review-popup__content{background:#fff;padding:15px}@media (min-width:768px){.expert-review-popup__content{padding:30px}}.expert-review-popup__content label{display:block;width:100%;margin:0 0 10px}.expert-review-popup__content input[type=email],.expert-review-popup__content input[type=text],.expert-review-popup__content textarea{display:block;width:100%;border:1px solid #ced4da;padding:.375em .75em;line-height:1.5;color:#111}.expert-review-popup__content input[type=email]:focus,.expert-review-popup__content input[type=text]:focus,.expert-review-popup__content textarea:focus{color:#111;background-color:#fff;border-color:#4d3bfe;outline:0}.expert-review-popup__content textarea{height:100px;resize:vertical}.expert-review-popup__content button{padding:.6rem 1.5rem;-webkit-box-shadow:0 15px 30px -18px rgba(0,0,0,.9);box-shadow:0 15px 30px -18px rgba(0,0,0,.9);border-radius:4px;display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;line-height:1.5;background:#4d3bfe;color:#fff;-webkit-transition:all .3s;transition:all .3s;cursor:pointer}.expert-review-popup__cancel{margin-left:20px;opacity:.7;cursor:pointer}.expert-review-popup__cancel:hover{opacity:1}.expert-review-popup .validation-failed{font-size:.9em;color:red}.expert-review-popup .success-message{color:green;font-size:1.2em;font-weight:700}.expert-review-popup .fail-message{color:red;font-size:1.2em;font-weight:700}.expert-review-popup__loader{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background:rgba(255,255,255,.5)}.expert-review-popup__loader span{position:absolute;top:calc(50% - 15px);left:calc(50% - 15px);display:inline-block;border:4px solid rgba(0,0,0,.25);border-left-color:#00f;border-radius:50%;width:30px;height:30px;-webkit-animation:donut-spin 1.2s linear infinite;animation:donut-spin 1.2s linear infinite;-webkit-transform:translateZ(0);transform:translateZ(0)}@-webkit-keyframes donut-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes donut-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}

/* ClinicBC source: /wp-content/plugins/my-popup/assets/public/css/styles.min.css */
:root{--mypopup-font-size:16px}.mypopup-body .mypopup-button,.mypopup-button{display:inline-block;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5;border:none;background:#3960ff;color:#fff;border-radius:3px;-webkit-transition:.2s;transition:.2s;text-decoration:none;cursor:pointer}.mypopup-body .mypopup-button:hover,.mypopup-button:hover{color:#fff;opacity:.9;-webkit-transform:translate3d(0,-2px,0);transform:translate3d(0,-2px,0)}.mypopup-body .mypopup-button:focus,.mypopup-button:focus{outline:0}.mypopup-over{position:fixed;top:0;right:0;bottom:0;left:0;width:100vw;height:100vh;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#000;border:1px solid rgba(0,0,0,.2);-webkit-transition:opacity .15s;transition:opacity .15s;z-index:99998}.mypopup-scroll-lock{overflow:hidden}.mypopup-modal-container{display:none;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:16px}.mypopup-modal-container *,.mypopup-modal-container :after,.mypopup-modal-container :before{-webkit-box-sizing:border-box;box-sizing:border-box}.mypopup-modal{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;width:350px;margin:60px 20px;pointer-events:none;text-align:center;z-index:99999;max-width:100%;max-height:100%}.mypopup-modal__form{gap:.5em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mypopup-modal__form>.button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.mypopup-modal__form label{margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px}.mypopup-modal__message{width:100%}.mypopup-modal__message--error{color:red}.mypopup-modal__message--success{color:green}.mypopup-modal_position_center-left,.mypopup-modal_position_top-left{top:0;left:0}.mypopup-modal_position_center-center,.mypopup-modal_position_top-center{top:0;left:0;right:0;margin-left:auto;margin-right:auto}.mypopup-modal_position_center-right,.mypopup-modal_position_top-right{top:0;right:0}.mypopup-modal_position_bottom-left{bottom:0;left:0}.mypopup-modal_position_bottom-left{bottom:0;left:0;margin-bottom:20px}.mypopup-modal_position_bottom-center{bottom:0;left:0;right:0;margin-left:auto;margin-right:auto;margin-bottom:20px}.mypopup-modal_position_bottom-right{bottom:0;right:0;margin-bottom:20px}.mypopup-modal-content{display:inline-block;width:100%;pointer-events:auto;background-clip:padding-box;outline:0;padding:20px;text-align:left;z-index:20}.mypopup-modal-content__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mypopup-modal-content__wrap--icon-left-bottom,.mypopup-modal-content__wrap--icon-left-center,.mypopup-modal-content__wrap--icon-left-top{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.mypopup-modal-content__wrap--icon-top-center,.mypopup-modal-content__wrap--icon-top-left,.mypopup-modal-content__wrap--icon-top-right{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mypopup-modal-content__wrap--icon-right-bottom,.mypopup-modal-content__wrap--icon-right-center,.mypopup-modal-content__wrap--icon-right-top{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.mypopup-modal-content__wrap--icon-bottom-center,.mypopup-modal-content__wrap--icon-bottom-left,.mypopup-modal-content__wrap--icon-bottom-right{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.mypopup-modal-content__wrap--icon-bottom-left,.mypopup-modal-content__wrap--icon-left-top,.mypopup-modal-content__wrap--icon-right-top,.mypopup-modal-content__wrap--icon-top-left{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mypopup-modal-content__wrap--icon-bottom-right,.mypopup-modal-content__wrap--icon-left-bottom,.mypopup-modal-content__wrap--icon-right-bottom,.mypopup-modal-content__wrap--icon-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.mypopup-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;max-width:100%}.mypopup-body p{margin:.5em 0}.mypopup-body p:first-child{margin-top:0}.mypopup-body p:last-child{margin-bottom:0}.mypopup-body p:empty{margin:0}.mypopup-body p+p{margin-top:1.3em}.mypopup-body a{color:inherit}.mypopup-body a:hover{color:inherit}.mypopup-body .input,.mypopup-body input[type=color],.mypopup-body input[type=date],.mypopup-body input[type=datetime-local],.mypopup-body input[type=datetime],.mypopup-body input[type=email],.mypopup-body input[type=month],.mypopup-body input[type=number],.mypopup-body input[type=password],.mypopup-body input[type=range],.mypopup-body input[type=search],.mypopup-body input[type=tel],.mypopup-body input[type=text],.mypopup-body input[type=time],.mypopup-body input[type=url],.mypopup-body input[type=week],.mypopup-body select,.mypopup-body textarea{padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#111;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-transition:border-color .15s ease-in-out;transition:border-color .15s ease-in-out}.mypopup-body .input:focus,.mypopup-body input[type=color]:focus,.mypopup-body input[type=date]:focus,.mypopup-body input[type=datetime-local]:focus,.mypopup-body input[type=datetime]:focus,.mypopup-body input[type=email]:focus,.mypopup-body input[type=month]:focus,.mypopup-body input[type=number]:focus,.mypopup-body input[type=password]:focus,.mypopup-body input[type=range]:focus,.mypopup-body input[type=search]:focus,.mypopup-body input[type=tel]:focus,.mypopup-body input[type=text]:focus,.mypopup-body input[type=time]:focus,.mypopup-body input[type=url]:focus,.mypopup-body input[type=week]:focus,.mypopup-body select:focus,.mypopup-body textarea:focus{border:1px solid #454749}.mypopup-modal-close{position:absolute;top:-20px;right:-20px;cursor:pointer;color:#fff;line-height:.5;opacity:.8}.mypopup-modal-close:before{content:"";position:absolute;top:-5px;right:-5px;bottom:-5px;left:-5px}.mypopup-modal-close:hover{opacity:1}.mypopup-modal-close svg{width:20px;height:20px}.mypopup-button-close--size-large:before{font-size:42px}.mypopup-button-close--size-small:before{font-size:24px}.mypopup-button-close--location-outside:before{text-shadow:0 0 5px rgba(0,0,0,.2)}/*!css.7f5d79293f1MjY5MTczOA==4068f86539a90a9*/:root{--mypopup-animate-duration:1s}.mypopup-modal{-webkit-animation-duration:var(--mypopup-animate-duration);animation-duration:var(--mypopup-animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}@media print,(prefers-reduced-motion:reduce){.mypopup-modal{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}}@-webkit-keyframes mypopup-backInDown{0%{-webkit-transform:translateY(-300px) scale(.7);transform:translateY(-300px) scale(.7);opacity:0}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes mypopup-backInDown{0%{-webkit-transform:translateY(-300px) scale(.7);transform:translateY(-300px) scale(.7);opacity:0}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.mypopup--animation-backInDown{-webkit-animation-name:mypopup-backInDown;animation-name:mypopup-backInDown}@-webkit-keyframes mypopup-backInLeft{0%{-webkit-transform:translateX(-300px) scale(.7);transform:translateX(-300px) scale(.7);opacity:0}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes mypopup-backInLeft{0%{-webkit-transform:translateX(-300px) scale(.7);transform:translateX(-300px) scale(.7);opacity:0}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.mypopup--animation-backInLeft{-webkit-animation-name:mypopup-backInLeft;animation-name:mypopup-backInLeft}@-webkit-keyframes mypopup-backInRight{0%{-webkit-transform:translateX(300px) scale(.7);transform:translateX(300px) scale(.7);opacity:0}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes mypopup-backInRight{0%{-webkit-transform:translateX(300px) scale(.7);transform:translateX(300px) scale(.7);opacity:0}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.mypopup--animation-backInRight{-webkit-animation-name:mypopup-backInRight;animation-name:mypopup-backInRight}@-webkit-keyframes mypopup-backInUp{0%{-webkit-transform:translateY(300px) scale(.7);transform:translateY(300px) scale(.7);opacity:0}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes mypopup-backInUp{0%{-webkit-transform:translateY(300px) scale(.7);transform:translateY(300px) scale(.7);opacity:0}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.mypopup--animation-backInUp{-webkit-animation-name:mypopup-backInUp;animation-name:mypopup-backInUp}@-webkit-keyframes mypopup-bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes mypopup-bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.mypopup--animation-bounceIn{-webkit-animation-name:mypopup-bounceIn;animation-name:mypopup-bounceIn}@-webkit-keyframes mypopup-bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-bounceInDown{-webkit-animation-name:mypopup-bounceInDown;animation-name:mypopup-bounceInDown}@-webkit-keyframes mypopup-bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-bounceInLeft{-webkit-animation-name:mypopup-bounceInLeft;animation-name:mypopup-bounceInLeft}@-webkit-keyframes mypopup-bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-bounceInRight{-webkit-animation-name:mypopup-bounceInRight;animation-name:mypopup-bounceInRight}@-webkit-keyframes mypopup-bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-bounceInUp{-webkit-animation-name:mypopup-bounceInUp;animation-name:mypopup-bounceInUp}@-webkit-keyframes mypopup-fadeIn{from{opacity:0}to{opacity:1}}@keyframes mypopup-fadeIn{from{opacity:0}to{opacity:1}}.mypopup--animation-fadeIn{-webkit-animation-name:mypopup-fadeIn;animation-name:mypopup-fadeIn}@-webkit-keyframes mypopup-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInDown{-webkit-animation-name:mypopup-fadeInDown;animation-name:mypopup-fadeInDown}@-webkit-keyframes mypopup-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInLeft{-webkit-animation-name:mypopup-fadeInLeft;animation-name:mypopup-fadeInLeft}@-webkit-keyframes mypopup-fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInRight{-webkit-animation-name:mypopup-fadeInRight;animation-name:mypopup-fadeInRight}@-webkit-keyframes mypopup-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInUp{-webkit-animation-name:mypopup-fadeInUp;animation-name:mypopup-fadeInUp}@-webkit-keyframes mypopup-fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInTopLeft{-webkit-animation-name:mypopup-fadeInTopLeft;animation-name:mypopup-fadeInTopLeft}@-webkit-keyframes mypopup-fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInTopRight{-webkit-animation-name:mypopup-fadeInTopRight;animation-name:mypopup-fadeInTopRight}@-webkit-keyframes mypopup-fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInBottomLeft{-webkit-animation-name:mypopup-fadeInBottomLeft;animation-name:mypopup-fadeInBottomLeft}@-webkit-keyframes mypopup-fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes mypopup-fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mypopup--animation-fadeInBottomRight{-webkit-animation-name:mypopup-fadeInBottomRight;animation-name:mypopup-fadeInBottomRight}@-webkit-keyframes mypopup-flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,45deg) translateZ(50px);transform:perspective(400px) rotate3d(1,0,0,45deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-10deg) translateZ(50px);transform:perspective(400px) rotate3d(1,0,0,-10deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,2deg) translateZ(30px);transform:perspective(400px) rotate3d(1,0,0,2deg) translateZ(30px);opacity:1}80%{-webkit-transform:perspective(400px) translateZ(10px);transform:perspective(400px) translateZ(10px)}to{-webkit-transform:perspective(400px) translateZ(1px);transform:perspective(400px) translateZ(1px)}}@keyframes mypopup-flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,45deg) translateZ(50px);transform:perspective(400px) rotate3d(1,0,0,45deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-10deg) translateZ(50px);transform:perspective(400px) rotate3d(1,0,0,-10deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,2deg) translateZ(30px);transform:perspective(400px) rotate3d(1,0,0,2deg) translateZ(30px);opacity:1}80%{-webkit-transform:perspective(400px) translateZ(10px);transform:perspective(400px) translateZ(10px)}to{-webkit-transform:perspective(400px) translateZ(1px);transform:perspective(400px) translateZ(1px)}}.mypopup--animation-flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:mypopup-flipInX;animation-name:mypopup-flipInX}@-webkit-keyframes mypopup-flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,45deg) translateZ(50px);transform:perspective(400px) rotate3d(0,1,0,45deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-10deg) translateZ(50px);transform:perspective(400px) rotate3d(0,1,0,-10deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,2deg) translateZ(30px);transform:perspective(400px) rotate3d(0,1,0,2deg) translateZ(30px);opacity:1}80%{-webkit-transform:perspective(400px) translateZ(10px);transform:perspective(400px) translateZ(10px)}to{-webkit-transform:perspective(400px) translateZ(1px);transform:perspective(400px) translateZ(1px)}}@keyframes mypopup-flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,45deg) translateZ(50px);transform:perspective(400px) rotate3d(0,1,0,45deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-10deg) translateZ(50px);transform:perspective(400px) rotate3d(0,1,0,-10deg) translateZ(50px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,2deg) translateZ(30px);transform:perspective(400px) rotate3d(0,1,0,2deg) translateZ(30px);opacity:1}80%{-webkit-transform:perspective(400px) translateZ(10px);transform:perspective(400px) translateZ(10px)}to{-webkit-transform:perspective(400px) translateZ(1px);transform:perspective(400px) translateZ(1px)}}.mypopup--animation-flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:mypopup-flipInY;animation-name:mypopup-flipInY}@-webkit-keyframes mypopup-rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes mypopup-rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.mypopup--animation-rotateIn{-webkit-animation-name:mypopup-rotateIn;animation-name:mypopup-rotateIn;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}@-webkit-keyframes mypopup-rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes mypopup-rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.mypopup--animation-rotateInDownLeft{-webkit-animation-name:mypopup-rotateInDownLeft;animation-name:mypopup-rotateInDownLeft;-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes mypopup-rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes mypopup-rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.mypopup--animation-rotateInDownRight{-webkit-animation-name:mypopup-rotateInDownRight;animation-name:mypopup-rotateInDownRight;-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes mypopup-rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes mypopup-rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.mypopup--animation-rotateInUpLeft{-webkit-animation-name:mypopup-rotateInUpLeft;animation-name:mypopup-rotateInUpLeft;-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes mypopup-rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes mypopup-rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.mypopup--animation-rotateInUpRight{-webkit-animation-name:mypopup-rotateInUpRight;animation-name:mypopup-rotateInUpRight;-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes mypopup-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes mypopup-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.mypopup--animation-zoomIn{-webkit-animation-name:mypopup-zoomIn;animation-name:mypopup-zoomIn}.mypopup-social-links,.mypopup-social-widget{margin-top:20px}.mypopup-social-buttons--align-left{text-align:left}.mypopup-social-buttons--align-center{text-align:center}.mypopup-social-buttons--align-right{text-align:right}.mypopup-social-button{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;padding:0 .5em;height:2em;margin:0 2px;background:#5a80b1;cursor:pointer;-webkit-transition:all .3s;transition:all .3s;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px}.mypopup-social-button:last-child{margin-right:0}.mypopup-social-button:hover{opacity:.7;filter:"alpha(opacity=70)";-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.mypopup-social-button:before{content:"";display:block;height:100%;width:100%;margin-left:.2em;margin-right:.2em;text-align:center;color:#fff}.mypopup-social-button span{white-space:nowrap;margin-left:.3em;margin-right:.3em}.mypopup-social-button span[data-counter]{margin:0 .5em;font-size:.8em}.mypopup-social-button span[data-counter]:empty{display:none}.mypopup-social-button--facebook{background:#4267b2}.mypopup-social-button--facebook:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.423 20v-7.298h2.464l.369-2.845h-2.832V8.042c0-.824.23-1.385 1.417-1.385h1.515V4.111A20.255 20.255 0 0 0 14.148 4c-2.183 0-3.678 1.326-3.678 3.76v2.097H8v2.845h2.47V20h2.953z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--vkontakte{background:#4a76a8}.mypopup-social-button--vkontakte:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.785 16.241s.288-.032.436-.194c.136-.148.132-.427.132-.427s-.02-1.304.576-1.496c.588-.19 1.341 1.26 2.14 1.818.605.422 1.064.33 1.064.33l2.137-.03s1.117-.071.587-.964c-.043-.073-.308-.661-1.588-1.87-1.34-1.264-1.16-1.059.453-3.246.983-1.332 1.376-2.145 1.253-2.493-.117-.332-.84-.244-.84-.244l-2.406.015s-.178-.025-.31.056c-.13.079-.212.262-.212.262s-.382 1.03-.89 1.907c-1.07 1.85-1.499 1.948-1.674 1.832-.407-.267-.305-1.075-.305-1.648 0-1.793.267-2.54-.521-2.733-.262-.065-.454-.107-1.123-.114-.858-.009-1.585.003-1.996.208-.274.136-.485.44-.356.457.159.022.519.099.71.363.246.341.237 1.107.237 1.107s.142 2.11-.33 2.371c-.325.18-.77-.187-1.725-1.865-.489-.859-.859-1.81-.859-1.81s-.07-.176-.198-.272c-.154-.115-.37-.151-.37-.151l-2.286.015s-.343.01-.469.161C3.94 7.721 4.043 8 4.043 8s1.79 4.258 3.817 6.403c1.858 1.967 3.968 1.838 3.968 1.838h.957z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--twitter{background:#00aced}.mypopup-social-button--twitter:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 7.539a6.56 6.56 0 0 1-1.885.517 3.294 3.294 0 0 0 1.443-1.816 6.575 6.575 0 0 1-2.085.796 3.283 3.283 0 0 0-5.593 2.994A9.32 9.32 0 0 1 5.114 6.6a3.28 3.28 0 0 0 1.016 4.382 3.274 3.274 0 0 1-1.487-.41v.041a3.285 3.285 0 0 0 2.633 3.218 3.305 3.305 0 0 1-1.482.056 3.286 3.286 0 0 0 3.066 2.28A6.585 6.585 0 0 1 4 17.524 9.291 9.291 0 0 0 9.032 19c6.038 0 9.34-5 9.34-9.337 0-.143-.004-.285-.01-.425A6.672 6.672 0 0 0 20 7.538z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--odnoklassniki{background:#f2720c}.mypopup-social-button--odnoklassniki:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M11.674 6.536a1.69 1.69 0 0 0-1.688 1.688c0 .93.757 1.687 1.688 1.687a1.69 1.69 0 0 0 1.688-1.687 1.69 1.69 0 0 0-1.688-1.688zm0 5.763a4.08 4.08 0 0 1-4.076-4.075 4.08 4.08 0 0 1 4.076-4.077 4.08 4.08 0 0 1 4.077 4.077 4.08 4.08 0 0 1-4.077 4.075zM10.025 15.624a7.633 7.633 0 0 1-2.367-.98 1.194 1.194 0 0 1 1.272-2.022 5.175 5.175 0 0 0 5.489 0 1.194 1.194 0 1 1 1.272 2.022 7.647 7.647 0 0 1-2.367.98l2.279 2.28a1.194 1.194 0 0 1-1.69 1.688l-2.238-2.24-2.24 2.24a1.193 1.193 0 1 1-1.689-1.689l2.279-2.279'/%3E%3C/g%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--telegram{background:#289fd9}.mypopup-social-button--telegram:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.92 6.089L4.747 11.555c-.967.388-.962.928-.176 1.168l3.534 1.104 1.353 4.146c.164.454.083.634.56.634.368 0 .53-.168.736-.368.13-.127.903-.88 1.767-1.719l3.677 2.717c.676.373 1.165.18 1.333-.628l2.414-11.374c.247-.99-.378-1.44-1.025-1.146zM8.66 13.573l7.967-5.026c.398-.242.763-.112.463.154l-6.822 6.155-.265 2.833-1.343-4.116z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--youtube{background:red}.mypopup-social-button--youtube:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M462.308 171.799c0 0-4.111-29.026-16.774-41.771-16.034-16.774-33.96-16.857-42.183-17.843-58.875-4.276-147.269-4.276-147.269-4.276h-0.164c0 0-88.394 0-147.269 4.276-8.223 0.987-26.148 1.069-42.183 17.843-12.663 12.745-16.692 41.771-16.692 41.771s-4.194 34.042-4.194 68.166v31.904c0 34.042 4.194 68.166 4.194 68.166s4.111 29.026 16.692 41.771c16.034 16.774 37.084 16.199 46.458 18.008 33.713 3.207 143.157 4.194 143.157 4.194s88.476-0.164 147.351-4.358c8.223-0.987 26.148-1.069 42.183-17.843 12.663-12.745 16.774-41.771 16.774-41.771s4.194-34.042 4.194-68.166v-31.904c-0.082-34.042-4.276-68.166-4.276-68.166zM212.502 310.599v-118.325l113.72 59.368-113.72 58.957z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--instagram{background:#d8478f}.mypopup-social-button--instagram:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 72.343c59.848 0 66.936 0.263 90.472 1.312 21.874 0.963 33.687 4.637 41.561 7.7 10.412 4.025 17.937 8.925 25.724 16.712 7.875 7.875 12.687 15.312 16.8 25.724 3.062 7.875 6.737 19.774 7.7 41.561 1.050 23.624 1.312 30.712 1.312 90.472s-0.262 66.936-1.312 90.472c-0.962 21.874-4.637 33.687-7.7 41.561-4.025 10.412-8.925 17.937-16.712 25.724-7.875 7.875-15.312 12.687-25.724 16.8-7.875 3.062-19.774 6.737-41.561 7.7-23.624 1.050-30.712 1.312-90.472 1.312s-66.936-0.262-90.472-1.312c-21.874-0.962-33.687-4.637-41.561-7.7-10.412-4.025-17.937-8.925-25.724-16.712-7.875-7.875-12.687-15.312-16.799-25.724-3.062-7.875-6.737-19.774-7.7-41.561-1.050-23.624-1.312-30.712-1.312-90.472s0.263-66.936 1.312-90.472c0.963-21.874 4.637-33.687 7.7-41.561 4.025-10.412 8.925-17.937 16.712-25.724 7.875-7.875 15.312-12.687 25.724-16.799 7.875-3.062 19.774-6.737 41.561-7.7 23.537-1.050 30.624-1.312 90.472-1.312zM256 32.006c-60.811 0-68.423 0.263-92.31 1.312-23.799 1.050-40.161 4.9-54.336 10.412-14.787 5.775-27.299 13.387-39.724 25.899-12.512 12.425-20.124 24.937-25.899 39.636-5.512 14.262-9.362 30.537-10.412 54.336-1.050 23.974-1.312 31.587-1.312 92.397s0.263 68.423 1.312 92.31c1.050 23.799 4.9 40.161 10.412 54.336 5.775 14.787 13.387 27.299 25.899 39.724 12.425 12.425 24.937 20.124 39.636 25.812 14.262 5.512 30.537 9.362 54.336 10.412 23.887 1.050 31.499 1.312 92.31 1.312s68.423-0.262 92.31-1.312c23.799-1.050 40.161-4.9 54.336-10.412 14.7-5.687 27.212-13.387 39.636-25.812s20.124-24.937 25.812-39.636c5.512-14.262 9.362-30.537 10.412-54.336 1.050-23.887 1.312-31.499 1.312-92.31s-0.262-68.423-1.312-92.31c-1.050-23.799-4.9-40.161-10.412-54.336-5.512-14.875-13.125-27.387-25.637-39.811-12.425-12.425-24.937-20.124-39.636-25.812-14.262-5.512-30.537-9.362-54.336-10.412-23.974-1.137-31.587-1.4-92.397-1.4v0z' fill='%23FFF' fill-rule='evenodd'/%3E%3Cpath d='M256 140.941c-63.523 0-115.059 51.536-115.059 115.059s51.536 115.059 115.059 115.059 115.059-51.536 115.059-115.059c0-63.523-51.536-115.059-115.059-115.059zM256 330.635c-41.211 0-74.635-33.424-74.635-74.635s33.424-74.635 74.635-74.635c41.211 0 74.635 33.424 74.635 74.635s-33.424 74.635-74.635 74.635z' fill='%23FFF' fill-rule='evenodd'/%3E%3Cpath d='M402.471 136.391c0 14.835-12.027 26.862-26.862 26.862s-26.862-12.027-26.862-26.862c0-14.835 12.027-26.862 26.862-26.862s26.862 12.027 26.862 26.862z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--linkedin{background:#0077b5}.mypopup-social-button--linkedin:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M211.692 211.692h61.305v31.425h0.876c8.529-15.298 29.409-31.425 60.522-31.425 64.712 0 76.68 40.284 76.68 92.677v106.707h-63.903v-94.596c0-22.564-0.461-51.586-33.24-51.586-33.282 0-38.36 24.572-38.36 49.947v96.235h-63.88v-199.384z' fill='%23FFF' fill-rule='evenodd'/%3E%3Cpath d='M100.924 211.692h66.462v199.384h-66.462v-199.384z' fill='%23FFF' fill-rule='evenodd'/%3E%3Cpath d='M167.384 156.308c0 18.353-14.879 33.23-33.23 33.23s-33.23-14.879-33.23-33.23c0-18.353 14.879-33.23 33.23-33.23s33.23 14.879 33.23 33.23z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--whatsapp{background:#65bc54}.mypopup-social-button--whatsapp:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 11.794c0 4.304-3.517 7.794-7.855 7.794a7.87 7.87 0 0 1-3.796-.97L4 20l1.418-4.182a7.714 7.714 0 0 1-1.127-4.024C4.29 7.489 7.807 4 12.145 4S20 7.49 20 11.794zm-7.855-6.553c-3.641 0-6.603 2.94-6.603 6.553 0 1.434.467 2.762 1.258 3.842l-.825 2.433 2.537-.806a6.6 6.6 0 0 0 3.633 1.084c3.642 0 6.604-2.94 6.604-6.553s-2.962-6.553-6.604-6.553zm3.967 8.348c-.049-.08-.177-.128-.37-.223-.192-.095-1.139-.558-1.315-.621-.177-.064-.305-.096-.434.095a10.92 10.92 0 0 1-.61.749c-.112.128-.224.143-.416.048-.193-.096-.813-.297-1.549-.948a5.76 5.76 0 0 1-1.07-1.323c-.113-.191-.013-.295.084-.39.086-.086.192-.223.289-.334.096-.112.128-.191.192-.319s.032-.239-.016-.335c-.048-.095-.433-1.035-.594-1.418-.16-.382-.32-.318-.433-.318-.112 0-.24-.016-.369-.016a.71.71 0 0 0-.513.239c-.177.19-.674.653-.674 1.593s.69 1.848.786 1.976c.096.127 1.332 2.119 3.289 2.884 1.958.764 1.958.51 2.31.477.353-.031 1.14-.461 1.3-.908.16-.446.16-.829.113-.908z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--viber{background:#7b519d}.mypopup-social-button--viber:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M18.434 15.574c-.484-.391-1.002-.743-1.511-1.102-1.016-.718-1.945-.773-2.703.38-.426.648-1.021.677-1.644.392-1.718-.782-3.044-1.989-3.821-3.743-.344-.777-.34-1.473.465-2.022.425-.29.854-.634.82-1.268-.045-.828-2.043-3.593-2.832-3.885a1.429 1.429 0 0 0-.984 0C4.373 4.95 3.606 6.48 4.34 8.292c2.19 5.405 6.043 9.167 11.349 11.463.302.13.638.183.808.23 1.208.012 2.623-1.158 3.032-2.318.393-1.117-.438-1.56-1.096-2.093zM12.485 4.88c3.879.6 5.668 2.454 6.162 6.38.045.363-.09.909.426.919.538.01.408-.528.413-.89.045-3.699-3.163-7.127-6.888-7.253-.281.04-.863-.195-.9.438-.024.427.466.357.787.406z'/%3E%3Cpath d='M13.244 5.957c-.373-.045-.865-.222-.953.299-.09.546.458.49.811.57 2.395.538 3.23 1.414 3.624 3.802.057.349-.057.89.532.8.436-.066.278-.53.315-.802.02-2.293-1.936-4.38-4.329-4.669z'/%3E%3Cpath d='M13.464 7.832c-.249.006-.493.033-.585.3-.137.4.152.496.446.544.983.158 1.5.74 1.598 1.725.027.268.195.484.452.454.356-.043.389-.361.378-.664.017-1.106-1.227-2.385-2.289-2.359z'/%3E%3C/g%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--pinterest{background:#bd081c}.mypopup-social-button--pinterest:before{background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9.742c0 1.58.599 2.986 1.884 3.51.21.087.4.003.46-.23.043-.16.144-.568.189-.738.06-.23.037-.31-.133-.512-.37-.436-.608-1.001-.608-1.802 0-2.322 1.74-4.402 4.53-4.402 2.471 0 3.829 1.508 3.829 3.522 0 2.65-1.174 4.887-2.917 4.887-.963 0-1.683-.795-1.452-1.77.276-1.165.812-2.421.812-3.262 0-.752-.405-1.38-1.24-1.38-.985 0-1.775 1.017-1.775 2.38 0 .867.293 1.454.293 1.454L8.69 16.406c-.352 1.487-.053 3.309-.028 3.492.015.11.155.136.22.054.09-.119 1.262-1.564 1.66-3.008.113-.409.647-2.526.647-2.526.32.61 1.254 1.145 2.248 1.145 2.957 0 4.964-2.693 4.964-6.298C18.4 6.539 16.089 4 12.576 4 8.204 4 6 7.13 6 9.742z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--yandexzen{background:#383b3f}.mypopup-social-button--yandexzen:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M13.7 13.7c-1.4 1.5-1.5 3.3-1.6 7.3 3.7 0 6.3 0 7.6-1.3 1.3-1.3 1.3-4 1.3-7.6-4 .1-5.8.2-7.3 1.6zM3 12.1c0 3.6 0 6.3 1.3 7.6C5.6 21 8.2 21 11.9 21c-.1-4-.2-5.8-1.6-7.3C8.8 12.3 7 12.2 3 12.1zM11.9 3C8.2 3 5.6 3 4.3 4.3 3 5.6 3 8.3 3 11.9c4-.1 5.8-.2 7.3-1.6C11.7 8.8 11.8 7 11.9 3zm1.8 7.3C12.3 8.8 12.2 7 12.1 3c3.7 0 6.3 0 7.6 1.3 1.3 1.3 1.3 4 1.3 7.6-4-.1-5.8-.2-7.3-1.6z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--github{background:#221e1b}.mypopup-social-button--github:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M12 3a9.12 9.12 0 00-9 9.23A9.2 9.2 0 009.15 21c.45.09.62-.2.62-.44v-1.57c-2.5.56-3-1.24-3-1.24a2.46 2.46 0 00-1-1.35c-.82-.57.06-.56.06-.56a1.9 1.9 0 011.38.95 1.89 1.89 0 002.62.77 2 2 0 01.57-1.23c-2-.24-4.1-1-4.1-4.56a3.6 3.6 0 01.93-2.48 3.41 3.41 0 01.09-2.44s.75-.25 2.47.94A8.93 8.93 0 0112 7.46a8.91 8.91 0 012.25.31c1.72-1.19 2.47-.94 2.47-.94a3.29 3.29 0 01.09 2.44 3.6 3.6 0 01.93 2.48c0 3.54-2.1 4.32-4.11 4.55a2.24 2.24 0 01.61 1.7v2.53c0 .3.16.53.62.44A9.21 9.21 0 0021 12.23 9.12 9.12 0 0012 3z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--discord{background:#5865f2}.mypopup-social-button--discord:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M17.54 6.91a13.65 13.65 0 00-3.25-1 7.1 7.1 0 00-.41.83 12.47 12.47 0 00-3.66 0 9.12 9.12 0 00-.41-.83 13.29 13.29 0 00-3.26 1A13.52 13.52 0 004.07 16a13.53 13.53 0 004 2h.06A10.11 10.11 0 009 16.75a.05.05 0 000-.07 9 9 0 01-1.25-.6.05.05 0 010-.08l.25-.2a9.52 9.52 0 008.05 0h.05l.25.2v.08a8 8 0 01-1.25.6v.07a11.23 11.23 0 00.81 1.33h.06a13.45 13.45 0 004-2 13.48 13.48 0 00-2.36-9.11zm-8.19 7.31a1.54 1.54 0 01-1.44-1.61A1.53 1.53 0 019.35 11a1.51 1.51 0 011.43 1.61 1.52 1.52 0 01-1.43 1.61zm5.31 0a1.53 1.53 0 01-1.43-1.61A1.52 1.52 0 0114.66 11a1.52 1.52 0 011.44 1.61 1.52 1.52 0 01-1.44 1.61z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--rutube{background:#0b1d38}.mypopup-social-button--rutube:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M15.7 5.4H4v13h3.3v-4.2h6.2l2.8 4.2H20l-3.1-4.3c1-.2 1.7-.5 2.1-1.1s.6-1.5.6-2.8v-1c0-.7-.1-1.3-.2-1.8-.1-.4-.4-.8-.7-1.2-.4-.3-.7-.6-1.2-.7-.5 0-1.1-.1-1.8-.1zm-.5 6H7.3v-3h7.9c.4 0 .8.1.9.2.2.1.3.4.3.8v1.1c0 .4-.1.6-.3.8-.2 0-.5.1-.9.1z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--yappy{background:#00e6bc}.mypopup-social-button--yappy:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M20.7 10.4c-.6-3.1-1.6-5-3.3-6.1-1.6-1.1-3.8-1.3-6.9-.7-6 1.2-8 4.1-6.8 10.2.6 3.1 1.6 5 3.3 6.1 1 .7 2.3 1 3.9 1 .9 0 1.9-.1 3-.3 3.1-.6 5-1.6 6.1-3.3 1-1.6 1.3-3.8.7-6.9zm-1.8 6.2c-.9 1.3-2.6 2.2-5.3 2.7-2.7.5-4.6.4-6-.5-1.3-.9-2.2-2.6-2.7-5.3-.1-.7-.2-1.3-.3-1.9l.3 1 1-.3c.2.4.5.7.8 1 .1-.2.3-.3.5-.3.3 0 .6.2.6.5 0 .1 0 .2-.1.3.3.1.7 0 1-.1 1.1-.3 1.7-1.5 1.6-2.7l.8-.2-.4-1.2-6.2 1.9C4.2 7.6 6 5.8 10.6 4.9c1-.2 1.9-.3 2.8-.3 1.3 0 2.4.3 3.2.8 1.3.9 2.2 2.6 2.7 5.3.7 2.7.5 4.6-.4 5.9zm-.5-9.3.4 1.2-.8.2c.1 1.2-.5 2.4-1.6 2.7-.3.1-.7.1-1 .1 0-.1.1-.2.1-.3 0-.3-.3-.6-.6-.5-.2 0-.4.2-.5.4-.3-.3-.6-.6-.8-1l-1 .3-.4-1.2 6.2-1.9zm-3.5 6.8c-.1.8-.5 1.2-.8 1.4-.4.3-.9.4-1.3.4h-.5c-.3-.1-.6-.4-.5-.7.1-.3.4-.6.7-.5.1 0 .6.1.8-.1.2-.1.3-.3.3-.6s.4-.6.7-.5c.4-.1.7.2.6.6z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--pikabu{background:#8ac858}.mypopup-social-button--pikabu:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M19.9 12.2c-.3-1.4-1-2.6-1.9-3.7-.1-.1-.2-.2-.2-.4-.1-.3-.2-.6-.3-.8-.7-1.2-1.8-2.1-3.1-2.5-.9-.4-1.9-.4-2.8-.2h-.2c-.5-.1-1-.2-1.6-.2-1.2-.1-2.4.1-3.5.6-1.5.6-2.4 2.2-2.1 3.8 0 .2.1.5.1.7-.2 1-.2 2.1-.3 3.1v.4c0 .6 0 1.2.2 1.8.3 1 .9 1.9 1.6 2.6.7.6 1.4 1.1 2.3 1.5.9.4 1.9.6 2.9.7 1.4.1 2.8-.3 4-1.2.6-.4 1.1-.9 1.6-1.4.1-.1.3-.2.5-.2 1.2-.2 2.2-1 2.6-2.1.3-.8.4-1.7.2-2.5zm-8.2-6c.2-.1.5-.2.8-.2 1.6.1 2.8.8 3.6 2.2.1.1.1.2.1.3.1.4-.1.7-.5.7-.4.1-.7 0-1.1-.1-1-.3-1.9-.8-2.6-1.5-.3-.3-.5-.6-.6-.9.1-.3.1-.4.3-.5zm2.6 10.7c-.7.6-1.5 1-2.4 1.1-.8.1-1.6 0-2.3-.2-.9-.3-1.8-.7-2.6-1.3-.6-.5-1.1-1.1-1.4-1.9-.1-.4-.1-.7-.1-1.1v-1.7l.3.3c.9.9 1.9 1.7 3.1 2.3 1.5.8 3.1 1.5 4.7 2l1 .3s-.2.1-.3.2zm2.3-1.7h-.4c-.8 0-1.5-.2-2.2-.4-1.8-.6-3.6-1.4-5.2-2.4-1-.6-1.9-1.5-2.5-2.4-.3-.5-.5-1-.6-1.6-.1-.9.4-1.6 1.1-2 .7-.3 1.4-.4 2.1-.4h1c.1 0 .1 0 .1.1-.1.7 0 1.4.5 1.9.6.8 1.4 1.5 2.3 2 .7.4 1.4.7 2.2.8.8.1 1.5.1 2.2-.4.2-.2.2-.2.4.1.5.8.9 1.7 1 2.6v.1c-.1 1-.9 1.9-2 2z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-button--yandex{background:#fc3f1d}.mypopup-social-button--yandex:before{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M17.8 20.8h-3.1V5.6h-1.4c-2.5 0-3.8 1.3-3.8 3.1 0 2.1.9 3.1 2.8 4.4l1.5 1-4.4 6.7H6.2l4-5.9C7.9 13.3 6.6 11.7 6.6 9c0-3.4 2.4-5.7 6.8-5.7h4.4v17.5z'/%3E%3C/svg%3E") center no-repeat}.mypopup-social-buttons .mypopup-social-button{padding:0 .1em;width:35px;height:35px}.mypopup-social-buttons--circle .mypopup-social-button{border-radius:50%}.mypopup-output-posts{font-size:.8em}.mypopup-output-posts__header{font-weight:700;margin-bottom:15px;font-size:1.1em}@media (min-width:768px){.mypopup-output-posts__header{margin-bottom:20px;font-size:1.3em}}.mypopup-output-posts-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mypopup-output-post{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:15px;margin-bottom:15px}.mypopup-output-post__thumb{position:relative;width:60px;-webkit-box-flex:1;-ms-flex:1 0 60px;flex:1 0 60px;margin-right:20px}.mypopup-output-post__thumb img{border-radius:4px}.mypopup-output-post__body{width:100%;-ms-flex-item-align:center;align-self:center}.mypopup-output-post__title a{text-decoration:none}.mypopup-output-post__title a:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:2}.wpshop-icon{display:inline-block;line-height:1;width:1em}.wpshop-icon-size-2{font-size:2em}.wpshop-icon-size-3{font-size:3em}.wpshop-icon-size-4{font-size:4em}.wpshop-icon-size-5{font-size:5em}.wpshop-icon-size-6{font-size:6em}.wpshop-icon-size-7{font-size:7em}.wpshop-icon-size-8{font-size:8em}.wpshop-icon-size-9{font-size:9em}.wpshop-icon--size10{font-size:10em}.mypopup-countdown{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.mypopup-countdown__num{font-size:1.4em;font-weight:600}.mypopup-countdown__label{font-size:.75em}.mypopup-countdown--style-1 .mypopup-countdown__item{-webkit-box-flex:0;-ms-flex:0 0 75px;flex:0 0 75px;max-width:75px;margin:0 5px;padding:10px 3px;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);background:var(--mypopup-countdown-background,#fff);color:var(--mypopup-countdown-color,#111);border-radius:6px}.mypopup-countdown--style-2 .mypopup-countdown__num{width:70px;margin:0 4px 5px;padding:10px 3px;background:var(--mypopup-countdown-background,#3960ff);color:var(--mypopup-countdown-color,#fff);-webkit-box-shadow:inset 0 2px 5px rgba(0,0,0,.3);box-shadow:inset 0 2px 5px rgba(0,0,0,.3);border-radius:6px}.mypopup-countdown--style-3 .mypopup-countdown__item{-webkit-box-flex:0;-ms-flex:0 0 75px;flex:0 0 75px;max-width:75px;margin:0 5px;padding:10px 2px;background:var(--mypopup-countdown-background,#fff);color:var(--mypopup-countdown-color,#111);border-radius:6px}.mypopup-countdown--style-3 .mypopup-countdown__num{font-size:2.4em;line-height:1.2}

/* ClinicBC source: /wp-content/plugins/quizle/assets/public/css/style.min.css */
:root{--quizle-primary-color:#8264FC;--quizle-primary-color-text:#ffffff;--quizle-background-1:#d9d9d9;--quizle-background-2:#b3b3b3;--quizle-text-color:#111;--quizle-text-color-lighter:#676767;--quizle-success-color:#7dc400;--quizle-success-background:rgba(125,196,0,.1);--quizle-error-color:#ec340a;--quizle-error-background:rgba(236, 52, 10, 0.1);--quizle-font-size:16px;--quizle-header-font-size:clamp(18px, 2vw, 24px);--quizle-header-line-height:1.3;--quizle-header-font-weight:800;--quizle-max-width:1000px;--quizle-body-max-width:900px;--quizle-sidebar-width:240px;--quizle-footer-height:64px;--quizle-border:1px solid rgba(0,0,0,.1);--quizle-container-padding:clamp(16px, 4vw, 30px);--quizle-space:clamp(10px, 1vw, 25px);--quizle-image-screen-gap:30px;--quizle-container-border-radius:21px;--quizle-image-border-radius:12px;--quizle-form-border-radius:6px;--quizle-answer-border-color-right:var(--quizle-success-color);--quizle-answer-border-color-wrong:var(--quizle-error-color);--quizle-answer-check-background:unset;--quizle-form-checkbox-size:20px;--quizle-form-padding:.5em .9em;--quizle-form-border-width:2px;--quizle-form-border-color:rgba(0, 0, 0, .25);--quizle-button-color:#fff;--quizle-button-padding:.7em 1.2em;--quizle-shadow-color:rgba(88, 85, 129, 0.15);--quizle-success-border-color:#7dc400;--quizle-error-border-color:#c52703;--quizle-social-icon-width:24px;--quizle-social-icon-height:24px}.quizle-contacts__title,.quizle-question__title{font-size:var(--quizle-header-font-size);line-height:var(--quizle-header-line-height);font-weight:var(--quizle-header-font-weight);margin-bottom:var(--quizle-space)}.quizle-answer-description p,.quizle-image-screen__description p,.quizle-question__description p{margin-top:8px;margin-bottom:8px}.quizle-container{-webkit-box-sizing:border-box;box-sizing:border-box}.quizle-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.quizle{position:relative;margin:30px auto;max-width:var(--quizle-max-width);background:var(--quizle-background);color:var(--quizle-text-color);font-size:var(--quizle-font-size);border-radius:var(--quizle-container-border-radius);-webkit-transform:translateZ(0);transform:translateZ(0)}.quizle.has-background{padding:var(--quizle-container-padding);-webkit-box-shadow:0 5px 50px -10px var(--quizle-background-2);box-shadow:0 5px 50px -10px var(--quizle-background-2)}.quizle img{max-width:100%;height:auto}@media (min-width:768px){.quizle--view-slides{height:var(--quizle-height)}}.quizle1{border:5px solid #8fabd9;border-radius:12px}.quizle1 .quizle-body{padding:20px}.quizle1 .quizle-question{background:linear-gradient(332.72deg,rgba(68,208,161,.15) 0,rgba(102,153,255,.15) 100%);border-radius:12px;padding:calc(var(--quizle-space) * 1.5) calc(var(--quizle-space) * 2)}.quizle1{background:linear-gradient(332.72deg,rgba(68,208,161,.15) 0,rgba(102,153,255,.15) 100%);border-radius:12px}.quizle1 .quizle-body{padding:calc(var(--quizle-space) * 1.5) calc(var(--quizle-space) * 2)}.quizle1{--quizle-primary-color:#2c7900;--quizle-form-border-color:#9fc289;--quizle-border-color:#9fc289}.quizle1{border-radius:var(--quizle-form-border-radius)}.quizle1 .quizle-body{padding:calc(var(--quizle-space) * 1.5) calc(var(--quizle-space) * 2)}.quizle1 .quizle-question{padding:calc(var(--quizle-space) * 1.5) calc(var(--quizle-space) * 2);border:1px solid #2913e3;border-radius:var(--quizle-form-border-radius)}.quizle-body{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%}.quizle-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:0;-ms-flex:0 0 var(--quizle-sidebar-width);flex:0 0 var(--quizle-sidebar-width);max-width:var(--quizle-sidebar-width);padding:var(--quizle-space);background:rgba(23,23,24,.05);font-size:.9em}.quizle.has-background .quizle-sidebar,body.single-quizle .quizle .quizle-sidebar{margin-top:calc(var(--quizle-container-padding) * -1);margin-right:calc(var(--quizle-container-padding) * -1);margin-bottom:calc(var(--quizle-container-padding) * -1)}.quizle-footer{position:absolute;bottom:0;left:0;right:0;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;gap:30px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:20px}.quizle--view-list .quizle-footer{position:relative}.quizle--view-slides .quizle-footer{height:var(--quizle-footer-height)}@media (max-width:767.98px){.quizle--view-slides .quizle-footer{position:sticky;bottom:0;padding:var(--quizle-container-padding);margin:calc(var(--quizle-container-padding) * -1);background:var(--quizle-background);width:auto;height:auto;-webkit-box-shadow:0 -5px 30px -10px rgba(0,0,0,.1);box-shadow:0 -5px 30px -10px rgba(0,0,0,.1)}}.quizle-footer>*{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%;max-width:100%}.quizle-footer__steps{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:5px}.quizle-footer__step-description{font-size:.75em;text-align:center;opacity:.9}@media (pointer:coarse){.quizle-footer__step-description{display:none}}@media (max-width:575.98px){.quizle-footer--has-progress{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}}.quizle-button,a.quizle-button,a:visited.quizle-button{position:relative;display:inline-block;margin:0;padding:var(--quizle-button-padding);background:var(--quizle-button-background,var(--quizle-primary-color));color:var(--quizle-primary-color-text,var(--quizle-button-color));border:none;border-radius:var(--quizle-form-border-radius);font-size:1em;text-transform:none;text-decoration:none;-webkit-box-shadow:none!important;box-shadow:none!important;cursor:pointer;overflow:hidden;-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.quizle-button:after,a.quizle-button:after,a:visited.quizle-button:after{content:"";position:absolute;top:-50%;right:-50%;bottom:-50%;left:-50%;background:-webkit-gradient(linear,left top,left bottom,from(rgba(229,172,142,0)),color-stop(50%,rgba(255,255,255,.5)),to(rgba(229,172,142,0)));background:linear-gradient(to bottom,rgba(229,172,142,0),rgba(255,255,255,.5) 50%,rgba(229,172,142,0));-webkit-transform:rotateZ(60deg) translate(-5em,7.5em);-ms-transform:rotate(60deg) translate(-5em,7.5em);transform:rotateZ(60deg) translate(-5em,7.5em);opacity:0}.quizle-button:focus,.quizle-button:hover,a.quizle-button:focus,a.quizle-button:hover,a:visited.quizle-button:focus,a:visited.quizle-button:hover{background:var(--quizle-button-background,var(--quizle-primary-color));opacity:.9;-webkit-transform:translate3d(0,-1px,0);transform:translate3d(0,-1px,0);text-decoration:none}.quizle-button:focus,a.quizle-button:focus,a:visited.quizle-button:focus{outline:0;-webkit-box-shadow:inset 0 0 0 2px var(--quizle-button-background,var(--quizle-primary-color)),inset 0 0 4px 2px rgba(255,255,255,.3)!important;box-shadow:inset 0 0 0 2px var(--quizle-button-background,var(--quizle-primary-color)),inset 0 0 4px 2px rgba(255,255,255,.3)!important}.quizle-button:focus:after,a.quizle-button:focus:after,a:visited.quizle-button:focus:after{-webkit-animation:sheen 1s forwards infinite;animation:sheen 1s forwards infinite}.quizle-button.disabled,.quizle-button[disabled],a.quizle-button.disabled,a.quizle-button[disabled],a:visited.quizle-button.disabled,a:visited.quizle-button[disabled]{opacity:.5;cursor:not-allowed}.quizle-select,.quizle-text,.quizle-text[type=color],.quizle-text[type=date],.quizle-text[type=datetime-local],.quizle-text[type=datetime],.quizle-text[type=email],.quizle-text[type=month],.quizle-text[type=number],.quizle-text[type=password],.quizle-text[type=range],.quizle-text[type=search],.quizle-text[type=tel],.quizle-text[type=text],.quizle-text[type=time],.quizle-text[type=url],.quizle-text[type=week],.wp-core-ui .quizle-select{display:block;width:100%;margin:0;padding:var(--quizle-form-padding);font-size:1em;line-height:1.5;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:var(--quizle-form-border-width) solid var(--quizle-background-2);background:var(--quizle-background-1);color:var(--quizle-text-color);border-radius:var(--quizle-form-border-radius);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.quizle-select:focus,.quizle-text:focus,.quizle-text[type=color]:focus,.quizle-text[type=date]:focus,.quizle-text[type=datetime-local]:focus,.quizle-text[type=datetime]:focus,.quizle-text[type=email]:focus,.quizle-text[type=month]:focus,.quizle-text[type=number]:focus,.quizle-text[type=password]:focus,.quizle-text[type=range]:focus,.quizle-text[type=search]:focus,.quizle-text[type=tel]:focus,.quizle-text[type=text]:focus,.quizle-text[type=time]:focus,.quizle-text[type=url]:focus,.quizle-text[type=week]:focus,.wp-core-ui .quizle-select:focus{border-color:var(--quizle-form-border-focus-color,var(--quizle-background-2));-webkit-box-shadow:none;box-shadow:none;outline:0;background:var(--quizle-background-1)}.quizle-select::-webkit-input-placeholder,.quizle-text::-webkit-input-placeholder,.quizle-text[type=color]::-webkit-input-placeholder,.quizle-text[type=date]::-webkit-input-placeholder,.quizle-text[type=datetime-local]::-webkit-input-placeholder,.quizle-text[type=datetime]::-webkit-input-placeholder,.quizle-text[type=email]::-webkit-input-placeholder,.quizle-text[type=month]::-webkit-input-placeholder,.quizle-text[type=number]::-webkit-input-placeholder,.quizle-text[type=password]::-webkit-input-placeholder,.quizle-text[type=range]::-webkit-input-placeholder,.quizle-text[type=search]::-webkit-input-placeholder,.quizle-text[type=tel]::-webkit-input-placeholder,.quizle-text[type=text]::-webkit-input-placeholder,.quizle-text[type=time]::-webkit-input-placeholder,.quizle-text[type=url]::-webkit-input-placeholder,.quizle-text[type=week]::-webkit-input-placeholder,.wp-core-ui .quizle-select::-webkit-input-placeholder{color:var(--quizle-text-color)}.quizle-select::-moz-placeholder,.quizle-text::-moz-placeholder,.quizle-text[type=color]::-moz-placeholder,.quizle-text[type=date]::-moz-placeholder,.quizle-text[type=datetime-local]::-moz-placeholder,.quizle-text[type=datetime]::-moz-placeholder,.quizle-text[type=email]::-moz-placeholder,.quizle-text[type=month]::-moz-placeholder,.quizle-text[type=number]::-moz-placeholder,.quizle-text[type=password]::-moz-placeholder,.quizle-text[type=range]::-moz-placeholder,.quizle-text[type=search]::-moz-placeholder,.quizle-text[type=tel]::-moz-placeholder,.quizle-text[type=text]::-moz-placeholder,.quizle-text[type=time]::-moz-placeholder,.quizle-text[type=url]::-moz-placeholder,.quizle-text[type=week]::-moz-placeholder,.wp-core-ui .quizle-select::-moz-placeholder{color:var(--quizle-text-color)}.quizle-select:-ms-input-placeholder,.quizle-text:-ms-input-placeholder,.quizle-text[type=color]:-ms-input-placeholder,.quizle-text[type=date]:-ms-input-placeholder,.quizle-text[type=datetime-local]:-ms-input-placeholder,.quizle-text[type=datetime]:-ms-input-placeholder,.quizle-text[type=email]:-ms-input-placeholder,.quizle-text[type=month]:-ms-input-placeholder,.quizle-text[type=number]:-ms-input-placeholder,.quizle-text[type=password]:-ms-input-placeholder,.quizle-text[type=range]:-ms-input-placeholder,.quizle-text[type=search]:-ms-input-placeholder,.quizle-text[type=tel]:-ms-input-placeholder,.quizle-text[type=text]:-ms-input-placeholder,.quizle-text[type=time]:-ms-input-placeholder,.quizle-text[type=url]:-ms-input-placeholder,.quizle-text[type=week]:-ms-input-placeholder,.wp-core-ui .quizle-select:-ms-input-placeholder{color:var(--quizle-text-color)}.quizle-select::-ms-input-placeholder,.quizle-text::-ms-input-placeholder,.quizle-text[type=color]::-ms-input-placeholder,.quizle-text[type=date]::-ms-input-placeholder,.quizle-text[type=datetime-local]::-ms-input-placeholder,.quizle-text[type=datetime]::-ms-input-placeholder,.quizle-text[type=email]::-ms-input-placeholder,.quizle-text[type=month]::-ms-input-placeholder,.quizle-text[type=number]::-ms-input-placeholder,.quizle-text[type=password]::-ms-input-placeholder,.quizle-text[type=range]::-ms-input-placeholder,.quizle-text[type=search]::-ms-input-placeholder,.quizle-text[type=tel]::-ms-input-placeholder,.quizle-text[type=text]::-ms-input-placeholder,.quizle-text[type=time]::-ms-input-placeholder,.quizle-text[type=url]::-ms-input-placeholder,.quizle-text[type=week]::-ms-input-placeholder,.wp-core-ui .quizle-select::-ms-input-placeholder{color:var(--quizle-text-color)}.quizle-select::placeholder,.quizle-text::placeholder,.quizle-text[type=color]::placeholder,.quizle-text[type=date]::placeholder,.quizle-text[type=datetime-local]::placeholder,.quizle-text[type=datetime]::placeholder,.quizle-text[type=email]::placeholder,.quizle-text[type=month]::placeholder,.quizle-text[type=number]::placeholder,.quizle-text[type=password]::placeholder,.quizle-text[type=range]::placeholder,.quizle-text[type=search]::placeholder,.quizle-text[type=tel]::placeholder,.quizle-text[type=text]::placeholder,.quizle-text[type=time]::placeholder,.quizle-text[type=url]::placeholder,.quizle-text[type=week]::placeholder,.wp-core-ui .quizle-select::placeholder{color:var(--quizle-text-color)}textarea.quizle-text{resize:vertical}.quizle-checkbox,.quizle-radio{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid var(--quizle-form-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;print-color-adjust:exact}.quizle-checkbox:checked,.quizle-radio:checked{background-color:#0d6efd;border-color:#0d6efd}.quizle-radio{border-radius:50%}.quizle-radio:checked{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.quizle-checkbox{border-radius:3px}.quizle-checkbox:checked{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.quizle-select,.wp-core-ui .quizle-select{max-width:none;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px}.quizle-select::-ms-expand,.wp-core-ui .quizle-select::-ms-expand{display:none}.quizle-visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}@-webkit-keyframes sheen{100%{opacity:1;-webkit-transform:rotateZ(60deg) translate(1em,-9em);transform:rotateZ(60deg) translate(1em,-9em)}}@keyframes sheen{100%{opacity:1;-webkit-transform:rotateZ(60deg) translate(1em,-9em);transform:rotateZ(60deg) translate(1em,-9em)}}.quizle fieldset{border:unset;margin:0;padding:0}.quizle-image-screen{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;gap:var(--quizle-image-screen-gap);background-repeat:no-repeat;background-position:center;background-size:cover;height:100%}.quizle-image-screen__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto}.quizle-image-screen__body{width:100%;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex:1 1 auto;flex:1 1 auto}.quizle-image-screen__image{max-width:100%;overflow:hidden}.quizle-image-screen__image img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:var(--quizle-image-border-radius)}.quizle-image-screen__title{position:relative;font-size:clamp(18px,2vw,30px);line-height:1.2;font-weight:800;z-index:20}.quizle-image-screen__description{position:relative;margin-top:20px;z-index:20}@media (min-width:768px){.quizle-image-screen__description{font-size:1.1em}}.quizle-image-screen__button{position:relative;margin-top:30px;z-index:20}.quizle-image-screen--img-position-background{padding:var(--quizle-container-padding);padding:30px 5vw;color:#fff;border-radius:calc(var(--quizle-container-border-radius) - 1.5px);overflow:hidden}@media (min-width:768px){.quizle-image-screen--img-position-background{position:absolute;top:0;left:0;right:0;bottom:0;height:auto;min-height:100%}}.quizle.has-background.quizle--view-slides .quizle-image-screen--img-position-background,body.single-quizle .quizle.quizle--view-slides .quizle-image-screen--img-position-background{margin:calc(var(--quizle-container-padding) * -1)}.quizle-image-screen--img-position-background:after{content:"";width:100%;height:100%;position:absolute;left:0;top:0;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.4)),to(rgba(0,0,0,.7)));background:linear-gradient(to bottom,rgba(0,0,0,.4) 0,rgba(0,0,0,.7) 100%)}.quizle-image-screen--img-position-background .quizle-image-screen__body{padding:0}.quizle-image-screen--img-position-bottom,.quizle-image-screen--img-position-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.quizle-image-screen--img-position-bottom>*,.quizle-image-screen--img-position-top>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-height:calc(50% - var(--quizle-image-screen-gap)/ 2)}}.quizle-image-screen--img-position-bottom .quizle-image-screen__image{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media (max-width:767.98px){.quizle-image-screen--img-position-left,.quizle-image-screen--img-position-right{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (min-width:768px){.quizle-image-screen--img-position-left>*,.quizle-image-screen--img-position-right>*{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%;max-width:100%}}@media (max-width:767.98px){.quizle-image-screen--img-position-right{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (min-width:768px){.quizle-image-screen--img-position-right .quizle-image-screen__image{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (max-width:767.98px){.quizle-image-screen--img-position-left{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.quizle-progress-container{position:sticky;top:0;left:0;padding:10px 0}.quizle-progress{position:relative;height:8px;border-radius:var(--quizle-form-border-radius);background:var(--quizle-progress-background,var(--quizle-background-1))}.quizle-progress-type--numbers .quizle-progress{background:unset;height:unset}.quizle-progress__bar{height:8px;border-radius:var(--quizle-form-border-radius);background:var(--quizle-progress-bar-background,var(--quizle-primary-color));-webkit-transition:all .2s;transition:all .2s}.quizle-progress__text{font-size:.9em}.quizle-progress-bar-container{padding:10vh 0}.quizle-progress-bar{position:relative;height:16px;margin:5vh 0;border-radius:20px;background:var(--quizle-progress-background,var(--quizle-background-1))}.quizle-progress-bar__inner{height:16px;border-radius:20px;background:var(--quizle-progress-bar-background,var(--quizle-primary-color));background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem;-webkit-animation:1s linear infinite quizle-progress-bar;animation:1s linear infinite quizle-progress-bar;-webkit-transition:all .2s;transition:all .2s}.quizle-progress-bar__text{margin:20px 0;font-size:.9em}@-webkit-keyframes quizle-progress-bar{0%{background-position-x:1rem}}@keyframes quizle-progress-bar{0%{background-position-x:1rem}}.quizle-expiration{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px}.quizle--view-list .quizle-expiration{position:sticky;top:0;margin:-8px 0 8px;background:var(--quizle-background,#fff);padding:8px 0;z-index:9999}body.admin-bar .quizle--view-list .quizle-expiration{top:32px}@media screen and (max-width:782px){body.admin-bar .quizle--view-list .quizle-expiration{top:0}}.quizle-expiration__text{white-space:nowrap;font-size:.9em}.quizle-expiration__time{font-family:monospace,monospace}.quizle-expiration__progress{width:100%;height:2px;background:var(--quizle-background-2)}.quizle-expiration__progress-line{width:0;height:2px;background:var(--quizle-primary-color);-webkit-transition:all 1s linear;transition:all 1s linear}.quizle-completion-expire,.quizle-upload-screen{padding:7vh 0;opacity:.9;text-align:center}.quizle-completion-expire p,.quizle-upload-screen p{margin:2rem 0 0;font-size:1.3em}.quizle-questions-header{border-bottom:1px solid #000}.quizle--view-slides .quizle-questions{padding-bottom:calc(var(--quizle-footer-height) + 20px);height:100%}.quizle--view-list .quizle-questions{margin-bottom:20px}.quizle-question{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:100%;-webkit-transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,transform .15s;transition:opacity .15s,transform .15s,-webkit-transform .15s;opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.quizle--view-list .quizle-question{margin-bottom:calc(var(--quizle-space) * 3)}.quizle--view-list .quizle-question:last-child{margin-bottom:0}.quizle-question__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:100%}.quizle-question__header{margin-bottom:var(--quizle-space);line-height:1.4}.quizle-question__media{max-width:100%;overflow:hidden}.quizle-question__media img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:var(--quizle-image-border-radius)}.quizle-question__video{width:100%;height:100%}.quizle-question__video--embed{position:relative;display:block;width:100%;padding:0;overflow:hidden}.quizle-question__video--embed:before{display:block;content:"";padding-top:56.25%}.quizle-question__video--embed embed,.quizle-question__video--embed iframe,.quizle-question__video--embed object,.quizle-question__video--embed video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.quizle-question__description{margin-top:calc(var(--quizle-space)/ 2);font-size:.9em}.quizle-question.hide{opacity:0;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}.quizle-question.show{opacity:0;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}.quizle-question.require-select-answer{--quizle-form-border-color:var(--quizle-error-color)}.quizle-question--media-position-left,.quizle-question--media-position-right{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;gap:30px;max-height:100%}@media (max-width:767.98px){.quizle-question--media-position-left,.quizle-question--media-position-right{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (min-width:768px){.quizle-question--media-position-left>*,.quizle-question--media-position-right>*{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%;max-width:100%}}.quizle-question--media-position-left .quizle-question__body,.quizle-question--media-position-right .quizle-question__body{width:100%;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.quizle-question--media-position-right .quizle-question__media{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.quizle-question--media-position-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:var(--quizle-image-screen-gap);height:100%}@media (min-width:768px){.quizle-question--media-position-top>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-height:calc(50% - var(--quizle-image-screen-gap)/ 2)}}.quizle-question-hints{margin-top:1rem;overflow:auto;max-height:50%}.quizle-question-hints::-webkit-scrollbar{width:10px}.quizle-question-hints::-webkit-scrollbar-track{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1);box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1)}.quizle-question-hints::-webkit-scrollbar-thumb{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--quizle-primary-color);box-shadow:inset 0 0 10px 10px var(--quizle-primary-color)}.quizle-question-hint{color:var(--quizle-text-color-lighter)}.quizle-question-hint a,.quizle-question-hint a:visited{color:var(--quizle-text-color-lighter)}.quizle-question-hint:not(:first-child){display:none}.quizle-answers{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--quizle-space)/ 2);overflow-y:auto}.quizle-answers::-webkit-scrollbar{width:10px}.quizle-answers::-webkit-scrollbar-track{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1);box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1)}.quizle-answers::-webkit-scrollbar-thumb{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--quizle-primary-color);box-shadow:inset 0 0 10px 10px var(--quizle-primary-color)}.quizle-answer{position:relative;width:100%}.quizle-answer__description{font-size:.9em}.quizle-answer__check{-webkit-box-flex:0;-ms-flex:0 0 var(--quizle-form-checkbox-size);flex:0 0 var(--quizle-form-checkbox-size);width:var(--quizle-form-checkbox-size);height:var(--quizle-form-checkbox-size);margin-top:.1em;vertical-align:top;background-color:var(--quizle-answer-check-background);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--quizle-form-border-width) solid var(--quizle-answer-border-color,var(--quizle-background-2));-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;print-color-adjust:exact;border-radius:50%}.quizle-answer.checked{--quizle-answer-border-color:var(--quizle-primary-color);--quizle-answer-check-background:var(--quizle-primary-color)}.quizle-answer.checked .quizle-answer__check{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.quizle-answer.reveal-right,.quizle-answer.right{--quizle-answer-border-color:red}.quizle-answer.wrong{--quizle-answer-border-color:pink}.quizle-answer.multiple .quizle-answer__check{border-radius:4px}.quizle-answer-description{overflow:auto}.quizle-answer--check,.quizle-answer--image-horizontal,.quizle-answer--image-vertical{line-height:1.5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.quizle-answer--check label,.quizle-answer--image-horizontal label,.quizle-answer--image-vertical label{margin:0;cursor:pointer}.quizle-answer--check,.quizle-answer--image-horizontal,.quizle-answer--image-vertical{border:2px solid var(--quizle-answer-border-color,var(--quizle-background-2));border-radius:var(--quizle-form-border-radius);-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.quizle-answer--check:hover,.quizle-answer--image-horizontal:hover,.quizle-answer--image-vertical:hover{-webkit-box-shadow:0 1px 5px 0 var(--quizle-shadow-color);box-shadow:0 1px 5px 0 var(--quizle-shadow-color)}.checked.quizle-answer--check,.checked.quizle-answer--image-horizontal,.checked.quizle-answer--image-vertical{--quizle-answer-border-color:var(--quizle-answer-border-color-checked, var(--quizle-primary-color))}.reveal-right.quizle-answer--check,.reveal-right.quizle-answer--image-horizontal,.reveal-right.quizle-answer--image-vertical,.right.quizle-answer--check,.right.quizle-answer--image-horizontal,.right.quizle-answer--image-vertical{--quizle-answer-border-color:var(--quizle-answer-border-color-right);--quizle-answer-check-background:var(--quizle-answer-border-color-right);background:var(--quizle-success-background)}.wrong.quizle-answer--check,.wrong.quizle-answer--image-horizontal,.wrong.quizle-answer--image-vertical{--quizle-answer-border-color:var(--quizle-answer-border-color-wrong);--quizle-answer-check-background:var(--quizle-answer-border-color-wrong);background:var(--quizle-error-background)}.quizle-answers--columns-1,.quizle-answers--columns-2,.quizle-answers--columns-3,.quizle-answers--columns-4{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.quizle-answers--columns-1 .quizle-answer{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.quizle-answers--columns-2 .quizle-answer--image-vertical{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2);flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2)}@media (min-width:768px){.quizle-answers--columns-2 .quizle-answer--check,.quizle-answers--columns-2 .quizle-answer--image-horizontal{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2);flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2)}}.quizle-answers--columns-3 .quizle-answer--image-vertical{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2);flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2)}@media (min-width:768px){.quizle-answers--columns-3 .quizle-answer--image-vertical{-webkit-box-flex:0;-ms-flex:0 0 calc(33.33% - var(--quizle-space)/ 2 / 1.5);flex:0 0 calc(33.33% - var(--quizle-space)/ 2 / 1.5)}}@media (min-width:768px){.quizle-answers--columns-3 .quizle-answer--check,.quizle-answers--columns-3 .quizle-answer--image-horizontal{-webkit-box-flex:0;-ms-flex:0 0 calc(33.33% - var(--quizle-space)/ 2 / 1.5);flex:0 0 calc(33.33% - var(--quizle-space)/ 2 / 1.5)}}.quizle-answers--columns-4 .quizle-answer--image-vertical{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2);flex:0 0 calc(50% - var(--quizle-space)/ 2 / 2)}@media (min-width:768px){.quizle-answers--columns-4 .quizle-answer--image-vertical{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - var(--quizle-space)/ 2 / 1.33);flex:0 0 calc(25% - var(--quizle-space)/ 2 / 1.33)}}@media (min-width:768px){.quizle-answers--columns-4 .quizle-answer--check,.quizle-answers--columns-4 .quizle-answer--image-horizontal{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - var(--quizle-space)/ 2 / 1.33);flex:0 0 calc(25% - var(--quizle-space)/ 2 / 1.33)}}.quizle-answer--text .quizle-text{font-size:1.2em}.quizle-answer--textarea .quizle-text{font-size:1.2em}.quizle-answer--check{display:-webkit-box;display:-ms-flexbox;display:flex}.quizle-answer--check label{display:-webkit-box;display:-ms-flexbox;display:flex;padding:var(--quizle-space);-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;max-width:100%;font-size:var(--quizle-font-size)}.quizle-answer--check .quizle-answer__body{margin-left:var(--quizle-space)}.quizle-answer--check .quizle-answer__text{display:block}.quizle-answer--check .quizle-answer__description{display:block;margin-top:4px}.quizle-answer--image-vertical{background:#fff;overflow:hidden}.quizle-answer--image-vertical label{display:block;width:100%;height:100%}.quizle-answer--image-vertical .quizle-answer__text{display:block;padding:var(--quizle-space)}.quizle-answer--image-vertical .quizle-answer__image{position:relative;display:block}.quizle-answer--image-vertical .quizle-answer__image img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.quizle-answer--image-vertical .quizle-answer__check{position:absolute;top:8px;right:8px;z-index:20;opacity:0}.quizle-answer--image-vertical.checked .quizle-answer__check{opacity:1}.quizle-answer--image-horizontal{overflow:hidden}.quizle-answer--image-horizontal label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.quizle-answer--image-horizontal .quizle-answer__image{position:relative;-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;max-width:100px;min-height:90px;-ms-flex-item-align:stretch;align-self:stretch}.quizle-answer--image-horizontal .quizle-answer__image img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.quizle-answer--image-horizontal .quizle-answer__text{display:block;padding:var(--quizle-space)}.quizle-answer--image-horizontal .quizle-answer__check{position:absolute;top:8px;right:8px;z-index:20;opacity:0}.quizle-answer--image-horizontal.checked .quizle-answer__check{opacity:1}.quizle-answer--custom{background:var(--quizle-background-1)}.quizle-answer--custom input[type=text]{margin:calc(var(--quizle-space) * -1) calc(var(--quizle-space) * -1) calc(var(--quizle-space) * -1) 0;padding:var(--quizle-space) var(--quizle-space) var(--quizle-space) 0;background:0 0;border:none}.quizle-answer--custom input[type=text]:disabled,.quizle-answer--custom input[type=text]:focus{background:0 0}.quizle-answer--file form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:10px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.quizle-answer--file input{border:0;opacity:0;overflow:hidden;padding:0;position:absolute!important;white-space:nowrap;width:200px;height:40px}.quizle-answer--file label{min-width:200px;height:40px;border:2px solid var(--quizle-button-background,var(--quizle-primary-color));border-radius:var(--quizle-form-border-radius);text-align:center;display:inline-block;cursor:pointer;font-weight:500;-webkit-transition:all .2s;transition:all .2s;padding:.5rem;margin:0;line-height:1.2em}.quizle-answer--file label:hover{opacity:.9;-webkit-transform:translate3d(0,-1px,0);transform:translate3d(0,-1px,0)}.quizle-file-upload-container{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;font-size:.9em}@media (min-width:768px){.quizle-file-upload-container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.quizle-file-upload-preview{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:calc(var(--quizle-space)/ 2)}.quizle-file-upload-preview__item{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;background:var(--quizle-background-1);border:2px solid var(--quizle-background-2);border-radius:var(--quizle-form-border-radius);padding:10px;font-size:.9em}@media (min-width:768px){.quizle-file-upload-preview__item{font-size:var(--quizle-font-size)}}.quizle-file-upload-preview__item-text{overflow:hidden}.quizle-file-upload-preview__item-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}@media (min-width:768px){.quizle-file-upload-preview__item-right{gap:10px}}.quizle-file-upload-preview__item-right img{max-height:45px;max-width:100px}@media (min-width:768px){.quizle-file-upload-preview__item-right img{height:45px;max-width:100%}}.quizle-file-upload-preview__item-remove{cursor:pointer;padding:5px}.quizle-file-upload-preview__item-remove:before{content:"✖"}.quizle-file-upload-messages{font-size:.9em}.quizle-file-upload-messages p{margin:0}.quizle-file-upload-messages .error{color:var(--quizle-error-color)}.quizle-file-upload-messages .warning{color:var(--quizle-error-color)}.quizle-results{height:100%}.quizle-results::-webkit-scrollbar{width:10px}.quizle-results::-webkit-scrollbar-track{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1);box-shadow:inset 0 0 10px 10px var(--color-bg-2,#eae9f1)}.quizle-results::-webkit-scrollbar-thumb{border-left:8px solid transparent;-webkit-box-shadow:inset 0 0 10px 10px var(--quizle-primary-color);box-shadow:inset 0 0 10px 10px var(--quizle-primary-color)}.social-share-providers{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap;z-index:20}.social-share-provider{margin-top:20px}.social-share-provider__link{display:block;padding:5px;width:calc(var(--quizle-social-icon-width,24px) + 10px);height:calc(var(--quizle-social-icon-height,24px) + 10px);color:inherit}.social-share-provider__link:hover{color:inherit;opacity:.8}.quizle-contacts{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;gap:30px}@media (min-width:768px){.quizle-contacts>:not(.quizle-image-screen){-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%;max-width:100%}}@media (min-width:768px){.quizle-contacts{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.quizle-contacts__description{margin-top:var(--quizle-space)}.quizle-contacts__fields{margin:var(--quizle-space) auto}.quizle-contacts__field{margin-bottom:var(--quizle-space)}.quizle-contacts__buttons{margin-bottom:var(--quizle-space)}.quizle-contacts__agreement{font-size:.8em;line-height:1.3;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:5px}.quizle--view-list .quizle-contacts{margin-bottom:20px}.quizle-contact-messengers{position:relative}.quizle-contact-messengers__icon{position:absolute;top:10px;left:8px;width:24px;height:24px;color:var(--quizle-background-2,var(--quizle-text-color))}.quizle-contact-messengers__input[type=text]{padding-left:40px}body.single-quizle{--quizle-background:#fff;height:100%;margin:0;background:#26284d}@media (max-width:767.98px){body.single-quizle{--quizle-container-border-radius:0}}body.single-quizle .quizle{padding:var(--quizle-container-padding)}@media (max-width:1199.98px){body.single-quizle .quizle{margin-top:0;margin-bottom:0}}.quizle-page{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}.quizle-page .quizle-container{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;width:100%}@media (min-width:768px){.quizle-page .quizle-container{padding:2vw}}.quizle-page .quizle{-webkit-box-shadow:0 20px 80px -20px rgba(0,0,0,.3);box-shadow:0 20px 80px -20px rgba(0,0,0,.3)}

/* ClinicBC source: /wp-content/plugins/wp-omnivideo/assets/public/css/omnivideo.min.css */
:root{--omnivideo-block-margin:20px auto;--omnivideo-block-padding:0;--omnivideo-block-border:none;--omnivideo-block-border-radius:0;--omnivideo-block-color:inherit;--omnivideo-block-background:none;--omnivideo-header-font-size:1.3em;--omnivideo-header-font-weight:bold;--omnivideo-header-color:inherit;--omnivideo-link-width:auto;--omnivideo-link-height:auto;--omnivideo-link-padding:4px 8px;--omnivideo-link-icon-size:clamp(24px,4vw,36px);--omnivideo-link-color:inherit;--omnivideo-link-background-color:hsla(0,0%,96%,.3);--omnivideo-link-hover-background-color:hsla(0,0%,88%,.49);--omnivideo-link-box-shadow:inset 0 0 0 1px rgba(63,63,63,.11);--omnivideo-link-border-radius:8px;--omnivideo-player-icon-size:clamp(40px,10vw,64px);--omnivideo-embed-border-radius:8px;--omnivideo-embed-max-height:75vh;--omnivideo-icon-data:"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg id='Mzc2NTAwNg==;'/%3E%3C/g%3E%3C/svg%3E%0A";--omnivideo-progress-bg:rgba(0,0,0,.05);--omnivideo-progress-bar-bg:rgba(84,139,255,.89);--omnivideo-intro-bg:rgba(0,0,0,.6);--omnivideo-intro-color:#fff;--omnivideo-intro-link-color:#fff;--omnivideo-intro-link-hover-color:#fff;--omnivideo-intro-box-shadow:inset 0 0 0 1px rgba(63,63,63,.11);--omnivideo-intro-close-color:#fff;--omnivideo-intro-close-font-size:1.125em;--omnivideo-intro-header-bg:rgba(0,0,0,.4);--omnivideo-intro-loader-color:rgba(120,234,62,.89);--omnivideo-intro-circle-size:32px;--omnivideo-intro-circle-stroke:3px;--omnivideo-intro-cross-size:16px;--omnivideo-intro-cross-color:#fff}.omnivideo-loader{animation:spin 1s linear infinite;border:6px solid #f3f3f3;border-radius:50%;border-top-color:#3498db;height:60px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:60px}@keyframes spin{0%{transform:translate(-50%,-50%) rotate(0deg)}to{transform:translate(-50%,-50%) rotate(1turn)}}.omnivideo-block{background:var(--omnivideo-block-background);border:var(--omnivideo-block-border);border-radius:var(--omnivideo-block-border-radius);box-shadow:var(--omnivideo-block-box-shadow);color:var(--omnivideo-block-color);line-height:1.5;margin:var(--omnivideo-block-margin);padding:var(--omnivideo-block-padding);position:relative}.omnivideo-block,.omnivideo-block *{box-sizing:border-box}.omnivideo-block.omnivideo-block--hide-single-icon.omnivideo-block--has-poster:not(.omnivideo-block--style-cover) .omnivideo-links--count-1,.omnivideo-block.omnivideo-block--hide-single-icon:not([data-default=""]):not(.omnivideo-block--style-cover) .omnivideo-links--count-1{display:none}.omnivideo-block__inner{position:relative}.omnivideo-block__inner,.omnivideo-body,.omnivideo-content{display:flex;flex-direction:column;gap:16px}.omnivideo-body{position:relative}.omnivideo-header{color:var(--omnivideo-header-color);font-size:var(--omnivideo-header-font-size);font-weight:var(--omnivideo-header-font-weight)}.omnivideo-description{font-size:.9em;line-height:1.5;opacity:.9}.omnivideo-poster{border-radius:8px;cursor:pointer;height:100%;-o-object-fit:cover;object-fit:cover;transition:all .2s;width:100%}.omnivideo-poster:hover{filter:contrast(1.1)}.omnivideo-icon{background:radial-gradient(circle,rgba(0,0,0,.2),transparent 60%);color:#fff;height:var(--omnivideo-player-icon-size);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);width:var(--omnivideo-player-icon-size);z-index:10}.omnivideo-icon svg{filter:drop-shadow(0 2px 10px rgba(0,0,0,.5));height:100%;position:relative;transform:translateZ(0);transition:all .2s;width:100%;z-index:10}.omnivideo-links{align-items:center;display:flex;gap:12px;justify-content:flex-start;overflow-x:auto;position:relative;scrollbar-width:none}.omnivideo-links::-webkit-scrollbar{display:none}.omnivideo-block .omnivideo-links .omnivideo-link{align-items:center;border-radius:var(--omnivideo-link-border-radius);box-shadow:var(--omnivideo-link-box-shadow);cursor:pointer;display:flex;flex-direction:column;font-size:clamp(10px,2vw,13px);gap:4px;height:var(--omnivideo-link-height);justify-content:center;padding:var(--omnivideo-link-padding);text-align:center;text-decoration:none;transition:all .2s ease;width:var(--omnivideo-link-width)}.omnivideo-block .omnivideo-links .omnivideo-link,.omnivideo-block .omnivideo-links .omnivideo-link:visited{background-color:var(--omnivideo-link-background-color);color:var(--omnivideo-link-color)}.omnivideo-block .omnivideo-links .omnivideo-link:hover{background-color:var(--omnivideo-link-hover-background-color);color:var(--omnivideo-link-hover-color,var(--omnivideo-link-color))}.omnivideo-block .omnivideo-links .omnivideo-link:focus{outline:none}.omnivideo-block .omnivideo-links .omnivideo-link.current{box-shadow:inset 0 0 0 1px #2c53ff}.omnivideo-block .omnivideo-links .omnivideo-link svg{height:var(--omnivideo-link-icon-size);transform:translateZ(0);transition:transform .15s ease;width:var(--omnivideo-link-icon-size)}.omnivideo-partner{font-size:.8em;line-height:1.3;opacity:.5;text-align:right}.omnivideo-pseudo{cursor:pointer;text-decoration:underline}.omnivideo-embed-container{display:none;position:relative}.omnivideo-block--has-poster .omnivideo-embed-container{display:block}.omnivideo-embed-container .iframe-hidden{display:none}.omnivideo-embed{background:#080f18;background:linear-gradient(rgba(20,137,255,.01),#15222f),radial-gradient(ellipse at top left,rgba(59,158,248,.5),transparent 50%),radial-gradient(ellipse at top right,hsla(47,71%,81%,.5),transparent 49.58%),radial-gradient(ellipse at center right,hsla(0,100%,78%,.29),transparent 50%),radial-gradient(ellipse at center left,rgba(75,235,205,.5),transparent 50%),radial-gradient(ellipse at center center,hsla(0,0%,100%,.5),transparent 50%);border-radius:var(--omnivideo-embed-border-radius);max-height:var(--omnivideo-embed-max-height);position:relative;scrollbar-width:none;width:100%}.omnivideo-embed::-webkit-scrollbar{display:none}.omnivideo-block.is-intro-responsive-height .omnivideo-embed{max-height:none}.omnivideo-block:not(.is-intro-responsive-height) .omnivideo-embed{overflow:auto}.omnivideo-embed:hover .omnivideo-icon svg{transform:scale(1.2)}.omnivideo-embed--16-9{aspect-ratio:16/9}.omnivideo-embed--9-16{aspect-ratio:9/16}.omnivideo-embed--1-1{aspect-ratio:1/1}.omnivideo-embed--4-3{aspect-ratio:4/3}.omnivideo-embed--21-9{aspect-ratio:21/9}.omnivideo-embed--4-5{aspect-ratio:4/5}.omnivideo-embed-loader{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.omnivideo-embed iframe:not(.omnivideo-intro iframe),.omnivideo-embed img:not(.omnivideo-intro img),.omnivideo-embed video:not(.omnivideo-intro video){border-radius:var(--omnivideo-embed-border-radius);bottom:0;height:100%!important;left:0;max-width:100%;position:absolute;right:0;top:0;width:100%!important}.omnivideo-block--style-standard{--omnivideo-block-padding:clamp(16px,1.8vw,42px);--omnivideo-block-border:1px solid hsla(0,0%,47%,.12);--omnivideo-block-box-shadow:0 4px 50px rgba(60,92,206,.18);--omnivideo-block-border-radius:16px;--omnivideo-block-background:#fff}.omnivideo-block--style-simple,.omnivideo-block--style-standard{--omnivideo-link-width:112px;--omnivideo-link-height:80px;--omnivideo-link-padding:0 8px}.omnivideo-block--style-simple-2{--omnivideo-link-padding:6px 12px 6px 8px;--omnivideo-link-icon-size:clamp(16px,3vw,24px)}.omnivideo-block--style-simple-2 .omnivideo-links{flex-wrap:wrap}.omnivideo-block--style-simple-2 .omnivideo-links .omnivideo-link{flex-direction:row}.omnivideo-block--style-simple-3{--omnivideo-block-background:#edf7ff;--omnivideo-block-border-radius:16px;--omnivideo-block-padding:clamp(16px,1.8vw,42px);--omnivideo-block-border:1px solid #d6edff;--omnivideo-link-icon-size:clamp(16px,3vw,28px);--omnivideo-link-padding:8px 16px;--omnivideo-link-background-color:#fff;--omnivideo-link-hover-background-color:#fff;--omnivideo-link-box-shadow:inset 0 0 0 1px #d6edff}.omnivideo-block--style-simple-3 .omnivideo-link{flex-direction:row;overflow:hidden;position:relative}.omnivideo-block--style-simple-3 .omnivideo-link:after{background-color:var(--omnivideo-link-color);border-radius:3px;bottom:-4px;content:"";display:block;height:6px;left:20%;position:absolute;transition:all .2s;width:60%}.omnivideo-block--style-simple-3 .omnivideo-link:hover:after{bottom:-1px}.omnivideo-block--style-cover{--omnivideo-block-border-radius:16px;--omnivideo-link-width:112px;--omnivideo-link-height:80px;--omnivideo-link-padding:0 8px;--omnivideo-embed-border-radius:16px}.omnivideo-block--style-cover .omnivideo-icon{display:none}.omnivideo-block--style-cover .omnivideo-body{background:#080f18;border-radius:var(--omnivideo-block-border-radius)}.omnivideo-block--style-cover .omnivideo-links{padding:0 16px}.omnivideo-block--style-cover .omnivideo-links .omnivideo-link{background:#fff;box-shadow:0 3px 20px rgba(20,20,25,.33)}.omnivideo-block--style-cover .omnivideo-links .omnivideo-link:hover{background:#fff}.omnivideo-block--style-cover:is(.omnivideo-block--playing) .omnivideo-links{padding:16px 16px 0}.omnivideo-block--style-cover:not(.omnivideo-block--playing) .omnivideo-links{height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:50}.omnivideo-block--style-cover:not(.omnivideo-block--playing) .omnivideo-links:not(.omnivideo-links--count-1) .omnivideo-link:hover{transform:translateY(-5px)}.omnivideo-block--style-cover:not(.omnivideo-block--playing) .omnivideo-links.omnivideo-links--count-1 .omnivideo-link:before{content:"";height:100%;left:0;pointer-events:all;position:absolute;top:0;width:100%;z-index:1}.omnivideo-block--style-cover:not(.omnivideo-block--playing) .omnivideo-links.omnivideo-links--count-1 .omnivideo-link:hover svg{transform:scale(1.2)}.omnivideo-block--style-cover:is(.omnivideo-block--playing) .omnivideo-links--count-1{display:none}.omnivideo-block--style-cover:not(.omnivideo-block--playing) .omnivideo-embed-container:before{background:rgba(0,0,0,.3);border-radius:var(--omnivideo-embed-border-radius);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:20}.omnivideo-block--style-cover .omnivideo-embed-container{display:block}.omnivideo-block--style-sunset{--omnivideo-block-padding:clamp(16px,1.8vw,42px);--omnivideo-block-border-radius:16px;--omnivideo-block-background:#aaacfe;--omnivideo-block-color:#fff;--omnivideo-link-padding:8px 8px;--omnivideo-link-background-color:#fff;--omnivideo-link-hover-background-color:#fff;--omnivideo-link-box-shadow:none;--omnivideo-link-border-radius:12px;--omnivideo-embed-border-radius:12px;background-image:radial-gradient(at 45% 43%,rgba(255,184,122,.73) 0,transparent 50%),radial-gradient(at 112% 6%,rgba(255,122,0,.93),transparent 91.6%),radial-gradient(at 84% 50%,rgba(255,133,173,.47) 0,transparent 50%),radial-gradient(at 85% 94%,rgba(82,84,255,.83),transparent 57.56%),radial-gradient(at 15% 5%,rgba(77,142,255,.65),transparent 77.73%)}.omnivideo-block--style-sunset .omnivideo-link{display:flex;flex:1 0 0}.omnivideo-block--style-pills{--omnivideo-link-padding:6px 16px;--omnivideo-link-border-radius:36px;--omnivideo-link-icon-size:clamp(16px,3vw,24px)}.omnivideo-block--style-pills .omnivideo-links{flex-wrap:wrap}.omnivideo-block--style-pills .omnivideo-links .omnivideo-link,.omnivideo-block--style-pills .omnivideo-links .omnivideo-link:visited{background-color:var(--omnivideo-link-color);color:#fff;flex-direction:row}.omnivideo-block--style-pills .omnivideo-links .omnivideo-link:hover,.omnivideo-block--style-pills .omnivideo-links .omnivideo-link:visited:hover{background-color:var(--omnivideo-link-color);color:#fff}.omnivideo-intro{background:var(--omnivideo-intro-bg);border-radius:var(--omnivideo-embed-border-radius);color:var(--omnivideo-intro-color);display:flex;flex-direction:column;min-height:100%;padding:.5rem}.omnivideo-intro__content{flex:1 0 auto;flex-direction:column;justify-content:center}.omnivideo-intro-header,.omnivideo-intro__content{align-items:center;border-radius:var(--omnivideo-embed-border-radius);display:flex;overflow:hidden}.omnivideo-intro-header{background:var(--omnivideo-intro-header-bg);color:#fff;font-size:.75rem;gap:.5rem;justify-content:space-between;line-height:1.3;margin-bottom:.5rem;padding:.5rem .75rem;position:relative;z-index:900}.omnivideo-intro-header__close,.omnivideo-intro-header__message{opacity:0;transition:visibility 0s,opacity .3s ease;visibility:hidden}.omnivideo-intro-header__close{background:transparent;border:none;color:var(--omnivideo-intro-close-color);cursor:pointer;font-size:var(--omnivideo-intro-close-font-size);line-height:1;margin-left:auto;padding:.33rem;text-align:center;text-decoration:none}.omnivideo-intro-header__close.show{display:block;opacity:1;visibility:visible}.omnivideo-intro-header__close svg{display:inline-block;height:1em;vertical-align:-.125em;width:1em}.omnivideo-intro-progress{border-radius:1rem;bottom:0;left:0;position:absolute;right:0}.omnivideo-intro-progress__bar{background:var(--omnivideo-intro-loader-color);border-radius:1rem;height:2px;width:0;z-index:999}.omnivideo-intro-block{align-items:start;display:flex;flex-direction:column;justify-content:center}.omnivideo-intro-block a{color:var(--omnivideo-intro-link-color)}.omnivideo-intro-block a:hover{color:var(--omnivideo-intro-link-hover-color)}.omnivideo-intro-circle-container{flex-shrink:0;height:var(--omnivideo-intro-circle-size);margin-left:auto;position:relative;width:var(--omnivideo-intro-circle-size)}.omnivideo-intro-circle{cursor:pointer;height:100%;transform:rotate(-90deg);width:100%}.omnivideo-intro-circle__bg{stroke:#444;stroke-width:var(--omnivideo-intro-circle-stroke);fill:none}.omnivideo-intro-circle__progress{stroke:var(--omnivideo-intro-loader-color);stroke-width:var(--omnivideo-intro-circle-stroke);fill:none;stroke-linecap:round;stroke-dasharray:0;stroke-dashoffset:0}.omnivideo-intro-circle-timer{font-size:calc(var(--omnivideo-intro-circle-size)/3.5);font-weight:700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.omnivideo-intro-circle-cross{height:var(--omnivideo-intro-cross-size);left:50%;opacity:0;position:absolute;top:50%;transition:opacity .5s ease,transform .5s ease;width:var(--omnivideo-intro-cross-size);stroke:var(--omnivideo-intro-cross-color);stroke-width:8px;stroke-linecap:round;pointer-events:none;transform:scale(.5) translate(-50%,-50%)}.omnivideo-intro-circle-cross.show{opacity:1;transform:scale(1) translate(-50%,-50%)}.elementor-shortcode .omnivideo-block:after{border:0;content:" ";display:block;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;text-indent:99999px;word-wrap:normal!important}

/* ClinicBC source: /wp-content/plugins/clinicbc-performance/assets/theme.css */

/* style.css */
/*
Theme Name: Готовое решение за 19500
Theme URI: https://rosait.ru/
Author: ООО "Сайт"
Author URI: https://rosait.ru/
Description: На базе этого готового решения можно собрать информационный сайт
Version: 5.1 Beta

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*
Version: 5.1 Beta - заменён фавикон
*/
/*
Version: 5.1.1 Beta - Решена проблема с параллаксом в яблочных мобилках
*/

#modal-product .success {
	color: green;
}

#menu-information a {
}

#menu-information a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-bottom: 0;
}

#menu-information a,
button.list-group-item {
	color: #555;
}

#menu-information a {
	background-color: #fff;
	border: 1px solid #ddd;
	display: block;
	margin-bottom: -1px;
	padding: 10px 15px;
	position: relative;
}

.navbar-brand {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.success-footer {
	color: white;
	font-weight: bold;
	font-size: 15px;
	text-align: right;
}
img {
	margin-bottom: 10px;
}
.alignleft {
	float: left;
	margin-right: 15px;
}
.alignright {
	float: right;
	margin-left: 15px;
}
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/*p:after{
	content: "";
	display: table;
	clear: both;
}*/
@media (max-width: 767px) {
	.alignleft {
		float: none;
		margin: 0 auto 15px;
		display: block;
	}
	.alignright {
		float: none;
		margin: 0 auto 15px;
		display: block;
	}}
[class*='__container'] {
	margin: auto !important;
}

.order__inner.fix-order__inner {
	padding: 80px 50px 70px;
}

.doctor {
	margin-top: 72px;
}
.doctor > .container {
	display: flex;
}
.doctor .doctor-photo {
	margin-right: 39px;
}
.doctor .doctor-photo img {
	height: auto;
	max-width: 367px;
	object-fit: cover;
}
.doctor-info__title {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	text-transform: uppercase;
	color: #222631;
}
.doctor-city {
	position: relative;
	margin-top: 15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #007691;
	margin-left: 25px;
}
.doctor-city:after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	background: url("/wp-content/themes/wp19/assets/svg/mapMarker.svg") no-repeat center;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
}
.doctor-block {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
}
.doctor-block__title {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #222631;
	margin-bottom: 8px;
}
.doctor-block__descr {
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	color: #222631;
}
.doctor-btn {
	margin-top: 93px;
}
.doctor-btn a {
	width: 316px;
	height: 49px;
}
.doctor-info {
	position: relative;
}
.doctor-info:after {
	position: absolute;
	content: '';
	bottom: -57px;
	width: 100%;
	height: 2px;
	background-color: #d3d3d3;
}

.doctors-wrappper {
	margin-top: 97px;
}
.doctors-text {
	margin-bottom: 40px;
}
.doctors-text__title {
	font-weight: 500;
	font-size: 26px;
	line-height: 32px;
	color: #222631;
	margin-bottom: 20px;
}
.doctors-text > ul {
	padding-left: 20px;
}

.doctors-text > ul > li {
	list-style: disc;
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	color: #222631;
	margin-bottom: 8px;
}
.doctors-text__theme {
	font-weight: 500;
	margin-bottom: 8px;
}
.doctor-photo__mobile {
	display: none;
}
.doctor-block__descr > ul {
	padding-left: 20px;
}

.doctor-block__descr > ul > li {
	list-style: disc;
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	color: #222631;
	margin-bottom: 8px;
}
@media all and (max-width: 992px) {
	.doctor {
		margin-top: 35px;
	}
	.doctor > .container {
		flex-direction: column;
	}
	.doctors-wrappper {
		margin-top: 67px;
	}
	.doctor-btn {
		margin-top: 36px;
	}
	.doctor-info:after {
		bottom: -36px;
	}
	.doctor .doctor-photo {
		display: none;
	}
	.doctor-photo__mobile {
		display: block;
	}
	.doctor-photo__mobile img {
		object-fit: cover;
		width: 100%;
		height: auto;
	}
	.doctor-info__title {
		margin-bottom: 18px;
	}}

@media (max-width: 600px) {
	.doctor-info__title {
		font-size: 24px;
	}
	.doctor-city {
		width: 65%;
	}
	.doctor-block__title {
		font-size: 16px;
		line-height: 20px;
	}
	.doctor-block__descr {
		font-size: 14px;
	}
	.doctors-text__title {
		font-size: 20px;
		line-height: 24px;
	}
	.doctors-text__descr {
		font-size: 14px;
		line-height: 145%;
	}
	.doctor-btn a {
		width: 100%;
		height: 49px;
	}
	.cm-doctors__stage {
		display: flex;
		justify-content: center;
		gap: 10px;
		align-items: end;
	}
	.carousel-doctors__item
		.carousel-doctors__item-inner
		.carousel-doctors__item-info
		.cm-doctors__stage
		img {
		width: 20px;
		height: 20px;
	}
	.carousel-doctors__item-inner
		.carousel-doctors__item-info
		.cm-doctors__stage
		p {
		font-size: 14px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
	}}
.cm-doctors__title {
	font-size: 20px;
}
.carousel-doctors__img {
	width: 100%;
	order: -1;
	max-height: 350px;
	margin-bottom: 30px;
}
.doctors-text__descr {
	font-size: 14px;
	line-height: 145%;
}
.doctor-info__title {
	font-size: 24px;
}
.doctor-block__title {
	font-size: 16px;
	line-height: 20px;
}
.cm-doctors__stage {
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: end;
}
.carousel-doctors__item
	.carousel-doctors__item-inner
	.carousel-doctors__item-info
	.cm-doctors__stage
	img {
	width: 20px;
	height: 20px;
}
.carousel-doctors__item-inner
	.carousel-doctors__item-info
	.cm-doctors__stage
	p {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.carousel-doctors__item-info {
	width: 100%;
	text-align: center;
}
.carousel-doctors__item-inner {
	padding: 10px;
	height: 613px;
}
.carousel-doctors__item-inner .carousel-doctors__img .doctors-detail-foto {
	width: 90%;
	object-position: 0 0px;
	border-radius: 12px;
	margin-bottom: 20px;
	height: 350px;
	object-fit: cover;
}
.carousel-doctors__item {
	padding: 0px 5px;
}
.carousel-doctors__item-info {
	padding-right: 0px;
	height: 214px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.mobile_about-button {
	display: flex;
	width: 100%;
	height: 34px;
	align-items: center;
	justify-content: center;
	background-color: #007691;
	border-radius: 20px;
	color: #fff;
	margin: 0px auto;
}
.mobile_about-button:hover {
	color: #fff;
}
.carousel-doctors__item-info.cm-doctors__block p {
	font-size: 17px;
}
@media (max-width: 600px) {
	.carousel-doctors__item-inner {
		height: auto;
	}
	.carousel-doctors__item-info {
		padding: 0px;
	}
	.carousel-doctors__img {
		max-height: none;
		margin-bottom: 0px;
	}
	.carousel-doctors__item-inner .carousel-doctors__img .doctors-detail-foto {
		height: 480px;
	}
	.carousel-doctors__item-info {
		height: auto;
	}}

@media (max-width: 400px) {
	.carousel-doctors__item-inner .carousel-doctors__img .doctors-detail-foto {
		height: 400px;
	}}

.parallax-about {
	text-align: center;
}
.rocket-logo {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	& svg {
		width: 50px;
		height: auto;
	}
	&:hover {
		text-decoration: none;
	}
}
.service-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1156px;
	margin: 0 auto;
}
.service-wrapper .service-text {
	max-width: 765px;
}

.service-wrapper .service-menu {
	max-width: 348px;
	border-radius: 20px;
	padding: 30px;
	-webkit-box-shadow: 2px 9px 11px 6px rgba(189, 189, 189, 0.25);
	-moz-box-shadow: 2px 9px 11px 6px rgba(189, 189, 189, 0.25);
	box-shadow: 2px 9px 11px 6px rgba(189, 189, 189, 0.25);
}

.service-menu-list li {
	color: #007691;
	list-style: disc;
}

.service-menu-list {
	padding-left: 25px;
	margin-top: 15px;
}
.service-menu__title {
	font-size: 18px;
	font-weight: 600;
}
@media all and (min-width: 992px) {
	.service-menu-list li:hover {
		text-decoration: underline;
		cursor: pointer;
	}}

.approve {
	background-color: #deedf0;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
}
.approve-img {
	width: 142px;
	height: 140px;
	overflow: hidden;
	border-radius: 20px;
}
.approve-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.approve-text__title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 20px;
	color: #424242;
	display: flex;
	align-items: center;
	gap: 10px;
}
.approve-doctor__name {
	font-weight: 500;
	font-size: 16px;
	color: #424242;
	margin-bottom: 8px;
}
.approve-doctor__position {
	font-weight: 400;
	font-size: 15px;
	color: #717171;
	margin-bottom: 8px;
}

.approve-doctor__experience {
	display: flex;
	gap: 4px;
	align-items: center;
	font-weight: 500;
	font-size: 15px;
}

@media all and (max-width: 600px) {
	.approve {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}}

.cm-doctors-block__title {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 53px;
	font-size: 45px;
	font-weight: 700;
}

@media all and (max-width: 992px) {
	.cm-doctors-block__title {
		font-size: 32px;
	}}

@media all and (max-width: 756px) {
	.cm-doctors-block__title {
		font-size: 24px;
	}}

@media all and (max-width: 576px) {
	.cm-doctors-block__title {
		font-size: 18px;
	}}

.header-phone__item a {
  text-decoration:none !important;;
}


/* css/bootstrap.min.css */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=719581cb746143efb5315f3faa57bf7b)
 * Config saved to config.json and https://gist.github.com/719581cb746143efb5315f3faa57bf7b
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *, *:before, *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important
    }}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-euro:before, .glyphicon-eur:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-jpy:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

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

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #424242;
    background-color: #fff
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #337ab7;
    text-decoration: none
}

a:hover, a:focus {
    color: #23527c;
    text-decoration: underline
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role="button"] {
    cursor: pointer
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
    font-size: 65%
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
    font-size: 75%
}

h1, .h1 {
    font-size: 36px
}

h2, .h2 {
    font-size: 30px
}

h3, .h3 {
    font-size: 24px
}

h4, .h4 {
    font-size: 18px
}

h5, .h5 {
    font-size: 14px
}

h6, .h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }}

small, .small {
    font-size: 85%
}

mark, .mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:hover, a.text-primary:focus {
    color: #286090
}

.text-success {
    color: #3c763d
}

a.text-success:hover, a.text-success:focus {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover, a.text-info:focus {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover, a.text-warning:focus {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover, a.text-danger:focus {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #337ab7
}

a.bg-primary:hover, a.bg-primary:focus {
    background-color: #286090
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover, a.bg-success:focus {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover, a.bg-info:focus {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover, a.bg-warning:focus {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover, a.bg-danger:focus {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px
}

ul ul, ol ul, ul ol, ol ol {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt, dd {
    line-height: 1.42857143
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0
}

blockquote footer, blockquote small, blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
    content: ''
}

.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    -webkit-box-shadow: none;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #424242;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }}

@media (min-width: 992px) {
    .container {
        width: 970px
    }}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column
}

table td[class*="col-"], table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0
    }}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #424242;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px;
    line-height: normal
}

input[type="file"] {
    display: block
}

input[type="range"] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type="search"] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
        line-height: 34px
    }

    input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] {
        line-height: 30px
    }

    input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] {
        line-height: 46px
    }}

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline, .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

.form-control-static.input-lg, .form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm, select[multiple].input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

textarea.input-lg, select[multiple].input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label ~ .form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #828282
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
        width: auto
    }

    .form-inline .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label, .form-inline .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none
}

.btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent
}

.btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none
}

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    /*border-top: 4px solid \9;*/
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup, .dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #424242;
    white-space: nowrap
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #353535;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #777
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    /*border-bottom: 4px solid \9;*/
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified > li {
    float: none
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified > li {
    float: none
}

.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a {
        margin-bottom: 0
    }}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff
    }}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

/*@media (max-device-width: 480px) and (orientation: landscape) {*/
@media (max-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width: 768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0
    }}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none
}

.navbar-brand > img {
    display: block
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none
    }}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
        width: auto
    }

    .navbar-form .input-group > .form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio, .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio label, .navbar-form .checkbox label {
        padding-left: 0
    }

    .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav > li > a {
    color: #777
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
    color: #333
}

.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #fff
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb > .active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
    color: #777;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #337ab7
}

.label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1, .jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron, .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px
    }}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail > img, .thumbnail a > img {
    margin-left: auto;
    margin-right: auto
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #337ab7
}

.thumbnail .caption {
    padding: 9px;
    color: #424242
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: bold
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right, .media > .pull-right {
    padding-left: 10px
}

.media-left, .media > .pull-left {
    padding-right: 10px
}

.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item, button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #c7ddef
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success, button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info, button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning, button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger, button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0
}

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #424242;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #424242
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #337ab7
}

.panel-primary > .panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
    }

    .modal-sm {
        width: 300px
    }}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.next, .carousel-inner > .item.active.right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)*/
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)*/
}

.carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev, .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    /*background-color: #000 \9;*/
    background-color: rgba(0, 0, 0, 0)
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after {
    clear: both
}

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

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important
    }}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important
    }}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md, td.visible-md {
        display: table-cell !important
    }}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important
    }}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print, td.visible-print {
        display: table-cell !important
    }}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }}

@media print {
    .hidden-print {
        display: none !important
    }}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

/* css/common.css */
/* rs-breadcrumbs */
.rs-breadcrumbs {
	margin-top: 35px;
}
.breadcrumb {
	border: 1px solid #dddddd;
	background: none;
}
.breadcrumb a {
	font-size: 13px;
	color: #454545;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
	color: #4ec67f;
	text-decoration: none;
}

.success {
	color: green !important;
	font-weight: bold;
	margin-top: 10px;
}
.bg-success {
	padding: 15px;
	border-radius: 4px;
}

/* Правовая информация */

.legal__title-wrapper {
	background: #007691;
	min-height: 266px;
	color: white;
	font-size: 36px;
	display: flex;
	align-items: center;
	margin-bottom: 73px;
}

.legal__title-wrapper h1 {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 36px;
	font-weight: 600;
	text-transform: none;
}

.legalContent {
	margin-bottom: 200px;
}

.legalContent__inner {
	display: flex;
	gap: 53px;
}

.legalContent__left ul {
	width: 270px;
}

.legalContent__left ul li {
	padding: 19px 35px 19px 25px;
	border-radius: 3px;
	background-color: #eee;
	margin-bottom: 10px;
	color: #222631;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.legalContent__left ul li:hover {
	color: #fff;
	background-color: #007691;
}

.legalContent__left ul li:last-child {
	margin-bottom: 0;
}

.legalContent__right h4 {
	color: #222631;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 21px;
	margin-top: 0px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.legalContent__right img {
	margin-bottom: 0;
	cursor: pointer;
}

.legalContent__right h4 span {
	text-decoration-line: underline;
}

.legalContent__right ul {
	margin-bottom: 30px;
}

.legalContent__right ul li {
	color: #222631;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	list-style-type: disc;
	list-style-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='-2 -2 4 4'><circle r='.5' /></svg>");
	margin-left: 24px;
	margin-bottom: 15px;
}

.legalContent__right ul li:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.legalContent__inner {
		flex-direction: column;
		gap: 30px;
	}

	.legalContent__left ul {
		width: auto;
	}

	.legalContent__left ul li {
		padding: 13px 10px;
		width: 400px;
	}}

@media (max-width: 768px) {
	.legalContent__left ul li {
		display: inline-block;
		padding: 13px 10px;
		width: auto;
	}}

@media (max-width: 500px) {
	.legalContent__left ul li {
		font-size: 13px;
	}

	.legalContent__right h4,
	.legalContent__right h4 span {
		font-size: 16px;
	}

	.legal__title-inner {
		display: flex;
		justify-content: center;
	}

	.legal__title-inner h1 {
		font-size: 28px;
		text-align: center;
		max-width: 315px;
	}}



.tab-content.active {
	display: block;
}

.tab-button.active {
	color: #fff;
	background: #007691;
}

.heal_lfk {
	margin-bottom: 10px;
}

.heal_lfk li {
	position: relative;
	padding: 0 !important;
	padding-left: 10px !important;
	background-color: transparent !important;
	line-height: 1.4em;
	font-size: 15px;
	color: #3e4350;
	font-weight: 400;
}

.heal_lfk li::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: #4ad3b0;
	border-radius: 100%;
	top: 10px;
	left: 0px;
}

/* css/block-css/rs-product-view.css */
﻿.rs-17 .rs-product-view #product-details-modal .modal-dialog {
    background: #fff;
    max-width: 945px;
    width: 100%;
}
.rs-17 .rs-product-view #product-details-modal .modal-content {
    background: #fff;
    display: block;
    height: auto;
    padding: 0;
    box-shadow: none;
	border: none;
}
.rs-17 .rs-product-view #product-details-modal .close{
    color: #454545;
    display: block;
    font-size: 34px;
    font-weight: 300;
    line-height: 20px;
    opacity: 0.6;
    padding: 13px;
    position: absolute;
    right: 0;
    text-shadow: none;
    top: 0;
    z-index: 1;
}
.rs-17 .rs-product-view .modal-details-inner {
    padding: 30px;
}
.rs-17 .rs-product-view .main-image{
	margin-top: 43px;
	height: 365px;
	position: relative;
}
.rs-17 .rs-product-view .product-largeimg-link{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.rs-17 .rs-product-view .product-largeimg-link img{
	margin: 0 auto;
}
.rs-17 .rs-product-view .product-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1;
	margin-top: 7px;
    margin-bottom: 20px;
	color: #454545;
    text-transform: uppercase;
}
.rs-17 .rs-product-view .product-code {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 10px;
    padding: 0;
    text-transform: uppercase;
}
.rs-17 .rs-product-view .product-price {
    font-size: 24px;
    font-weight: 700;
	color: #454545;
    line-height: normal;
    margin-bottom: 10px;
}
.rs-17 .rs-product-view .price-standard {
    color: #a6a6a6;
    font-size: 14px;
    text-decoration: line-through;
}
.rs-17 .rs-product-view .details-description{
	border-bottom: 1px solid #dddddd;
}
.rs-17 .rs-product-view .details-description p{
	color: #616161;
	margin-bottom: 15px;
}
.rs-17 .rs-product-view #product-details-modal .color-details {
    margin-top: 15px;
}
.rs-17 .rs-product-view .swatches {
    margin: 0.5em 0;
    padding-left: 0;
}
.rs-17 .rs-product-view  .swatches li {
    border: 2px solid #FFFFFF;
    display: inline-block;
    margin: 2px 1px;
    vertical-align: top;
    list-style: none;
}
.rs-17 .rs-product-view .swatches a {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid #FFFFFF;
    box-shadow: 1px 1px 2px #C5C5C5;
    display: block;
    height: 33px;
    text-align: center;
    transition: all 0.25s ease 0s;
    width: 33px;
	cursor: pointer;
}
.rs-17 .rs-product-view .swatches a:hover ,
.rs-17 .rs-product-view .swatches a :focus{
	text-decoration: none;
}
.rs-17 .rs-product-view .swatches li a:after {
    content: "\f00c";
    font-family: fontawesome;
    font-size: 0;
    font-weight: 300;
    color: #fff;
    transition: font-size 0.25s ease 0.1s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.rs-17 .rs-product-view .swatches .selected a:after {
    content: "\f00c";
    font-family: fontawesome;
    font-size: 100%;
    font-weight: lighter;
    color: #fff;
    transition: font-size 0.25s ease 0.1s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.rs-17 .rs-product-view .modal-product-thumb {
    border-top: 1px solid #ddd;
    clear: both;
    display: block;
    text-align: center;
	padding-top: 15px;
}
.rs-17 .rs-product-view .modal-product-thumb a {
    border: 1px solid #ccc;
    display: inline-block;
    float: none;
    margin-right: 3px;
    margin-top: 5px;
    height: 70px;
    overflow: hidden;
    width: 67px;
	position: relative;
}
.rs-17 .rs-product-view .modal-product-thumb a.selected,
.rs-17 .rs-product-view .modal-product-thumb a:hover {
    border: 1px solid #000 !important;
}
.rs-17 .rs-product-view .modal-product-thumb a:last-child {
	margin-right: 0;
}
.rs-17 .rs-product-view .modal-product-thumb a img {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    margin: 0 auto;
}
.rs-17 .rs-product-view .productFilter {
    border-bottom: 1px solid #DDDDDD;
    border-top: 1px solid #DDDDDD;
    clear: both;
    display: block;
    padding-bottom: 7px;
    padding-top: 10px;
    margin-top: 20px;
}
.rs-17 .rs-product-view #product-details-modal .filterBox {
    display: inline-block;
	width: 100%;
}
.rs-17 .rs-product-view .productFilter select,
.rs-17 .rs-product-view .productFilter input {
    font-size: 13px;
}
.rs-17 .rs-product-view .productFilter .select2-container,
.rs-17 .rs-product-view .form-group .select2-container {
    width: 100% !important;
}
.rs-17 .rs-product-view .select2-container--default.select2-container--open .select2-selection--single{
	background-color: #fafafa;
	outline: none;
}
.rs-17 .rs-product-view .select2-container .select2-selection--single {
    height: 37px;
}
.rs-17 .rs-product-view .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dddddd;
    border-radius: 3px 3px;
    border-style: solid;
    border-width: 1px;
}
.rs-17 .rs-product-view .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #454545;
    line-height: 36px;
}
.rs-17 .rs-product-view .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}
.rs-17 .rs-product-view .select2-search--dropdown{
	padding: 0;
}
.rs-17 .rs-product-view .select2-container .select2-selection--single .select2-selection__rendered{
	padding-left: 15px;
}
.rs-17 .rs-product-view .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #454545 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.rs-17 .rs-product-view .cart-actions {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #DDDDDD;
    padding-top: 20px;
    clear: both;
	margin-bottom: 0;
    margin-top: 0;
}
.rs-17 .rs-product-view .cart-actions .btn{
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	letter-spacing: 0.7pt;
	-webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    transition: all .4s ease-out;
	margin-bottom: 10px;
}
.rs-17 .rs-product-view .cart-actions .btn-color{
	text-transform: uppercase;
	font-weight: 600;
}
.rs-17 .rs-product-view .cart-actions .btn-default{
	background-color: #bdbdbd;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	border: none;
}
.rs-17 .rs-product-view .cart-actions .btn-default:hover,
.rs-17 .rs-product-view .cart-actions .btn-default:focus{
	background-color: #ababab;
}
.rs-17 .rs-product-view  .product-share{
	margin-top: 16px;
}
@media (max-width: 800px){
	.rs-17 .rs-product-view #product-details-modal .modal-dialog {
		max-width: 90%;
		margin: 20px auto;
	}}


/* css/block-css/style.css */
html,
body {
	min-height: 100%;
}

body h1,
body h2 {
	text-transform: uppercase;
}

body.modal-open .wrapper {
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-ms-filter: blur(10px);
	-o-filter: blur(10px);
	filter: blur(10px);
}

a {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.form-control:focus {
	border-color: #01579b;
	box-shadow: none;
}

.btn-color {
	background-color: #fee11a;
	font-size: 14px;
	font-weight: 400;
	color: #212121;
	border: 1px solid transparent;
	padding: 6px 18px;
	white-space: normal;
}

.btn-color:hover,
.btn-color:focus {
	background-color: #ffe743;
	color: #212121;
	outline: none;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #fff;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	padding: 6px 18px;
	white-space: normal;
}

.btn-outline:hover,
.btn-outline:focus {
	background-color: #fff;
	color: #424242;
	outline: none;
}

.btn-quickview {
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #424242 !important;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #bdbdbd;
	left: auto;
	min-width: 100px;
	max-height: 40px;
	height: 40px !important;
	opacity: 0;
	white-space: normal;
	-webkit-opacity: 0;
	-ms-opacity: 0;
	padding: 10px;
	visibility: hidden;
	width: auto;
	display: inline-block !important;
	z-index: 2;
	transform: scale(0.75);
	-webkit-transform: scale(0.75);
	-o-transform: scale(0.75);
	-ms-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
}

.no-padding {
	padding: 0 !important;
}

.wrapper {
	min-height: 50vh;
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #000;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}

.pace .pace-progress-inner {
	display: block;
	position: absolute;
	right: 0px;
	width: 100px;
	height: 100%;
	box-shadow: 0 0 10px #000, 0 0 5px #000;
	opacity: 1;
	-webkit-transform: rotate(3deg) translate(0px, -4px);
	-moz-transform: rotate(3deg) translate(0px, -4px);
	-ms-transform: rotate(3deg) translate(0px, -4px);
	-o-transform: rotate(3deg) translate(0px, -4px);
	transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
	display: block;
	position: fixed;
	z-index: 2000;
	top: 50%;
	right: 50%;
	width: 44px;
	height: 44px;
	border: solid 2px transparent;
	border-top-color: #acacac;
	border-left-color: #acacac;
	border-radius: 44px;
	-webkit-animation: pace-spinner 400ms linear infinite;
	-moz-animation: pace-spinner 400ms linear infinite;
	-ms-animation: pace-spinner 400ms linear infinite;
	-o-animation: pace-spinner 400ms linear infinite;
	animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes pace-spinner {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes pace-spinner {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes pace-spinner {
	0% {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes pace-spinner {
	0% {
		transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.rs-17 .rs-modal .modal {
	padding-top: 60px;
}

.rs-17 .rs-modal .modal .close {
	font-size: 35px;
	font-weight: 300;
	margin-right: -10px;
	margin-top: -20px;
}

.rs-17 .rs-modal .modal-content {
	background-color: #ffffff;
}

.rs-17 .rs-modal .modal-dialog {
	max-width: 420px;
	margin: 0 auto;
}

.rs-17 .rs-modal #agreement .modal-dialog {
	max-width: 100%;
	width: 768px;
	margin: 0 auto;
}

.rs-17 .rs-modal .modal-header {
	border-bottom: 0;
	padding: 30px 30px 0;
}

.rs-17 .rs-modal .modal-header h3 {
	margin-bottom: 20px;
}

.rs-17 .rs-modal .modal-header p {
	color: #bdbdbd;
	margin-bottom: 0;
}

.rs-17 .rs-modal .modal-body {
	padding: 20px 30px 30px;
}

.rs-17 .rs-modal .modal-title {
	color: #424242;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
}

.rs-17 .rs-modal .modal .btn-default {
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	color: #616161;
	border-color: #9e9e9e;
	font-weight: 700;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.rs-17 .rs-modal .modal .form-order input,
.rs-17 .rs-modal .modal .form-order textarea {
	width: 100%;
	max-width: 100%;
	height: 40px;
	padding-left: 14px;
	background-color: #fff;
	border: 1px solid #9e9e9e;
	border-radius: 4px;
	color: #000000;
	outline: none;
	margin-bottom: 13px;
}

.rs-17 .rs-modal .modal .form-order .checkbox {
	margin-top: 0;
}

.rs-17 .rs-modal .modal .form-order input[type='checkbox'] {
	width: auto;
	max-width: none;
	height: auto;
}

.rs-17 .rs-modal .modal .checkbox-label {
	font-size: 12px;
	color: #616161;
	border-bottom: 1px dashed #cfcfcf;
}

.rs-17 .rs-modal .modal .checkbox label {
	font-size: 12px;
	color: #616161;
	padding-left: 0;
}

.rs-17 .rs-modal .modal .checkbox-label:hover,
.rs-17 .rs-modal .modal .checkbox-label:focus {
	border-bottom: none;
	text-decoration: none;
}

.rs-17 .rs-modal .modal .form-order input:focus,
.rs-17 .rs-modal .modal .form-order textarea:focus {
	border-color: #4ec67f;
}

.rs-17 .rs-modal .modal .form-order textarea {
	height: 90px;
}

.form-order input::-webkit-input-placeholder,
.form-order textarea::-webkit-input-placeholder {
	color: #bdbdbd;
}

.form-order input::-moz-placeholder,
.form-order textarea::-moz-placeholder {
	color: #bdbdbd;
}

.form-order input:-moz-placeholder,
.form-order textarea:-moz-placeholder {
	color: #bdbdbd;
}

.form-order input:-ms-input-placeholder,
.form-order textarea:-ms-input-placeholder {
	color: #bdbdbd;
}

.rs-17 .rs-modal .modal input.error {
	margin-bottom: 0;
}

.rs-17 .rs-modal .modal input.error,
.rs-17 .rs-modal .modal input.error:focus {
	border-color: #d80000;
}

.rs-17 .rs-modal .modal label.error {
	color: #d80000;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 17px;
}

.rs-17 .rs-modal #video-block-full .modal-dialog {
	max-width: 900px;
	width: 100%;
}

.rs-17 .rs-modal #video-block-full .modal-content {
	max-width: 900px;
	box-shadow: none;
	background-color: transparent;
	border: none;
	border-radius: 0;
}

.rs-17 .rs-modal #video-block-full .modal-header {
	padding: 0;
}

.rs-17 .rs-modal #video-block-full .modal-body {
	padding: 0;
}

.rs-17 .rs-modal #video-block-full .close {
	color: #fff;
	margin-right: 0;
	opacity: 1;
}

.rs-17 ._rs-button-up {
	display: none;
	position: fixed;
	z-index: 999;
	left: 30px;
	bottom: 30px;
	width: 55px;
	height: 55px;
	border-radius: 4px;
	background-color: rgb(74, 211, 176);
	text-align: center;
	-moz-transition: background-color 0.4s ease-out;
	-o-transition: background-color 0.4s ease-out;
	-ms-transition: background-color 0.4s ease-out;
	transition: background-color 0.4s ease-out;
}

.rs-17 ._rs-button-up:before {
	content: '\f106';
	display: inline-block;
	color: #fff;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 35px;
	padding-top: 8px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.rs-17 ._rs-button-up:hover,
.rs-17 ._rs-button-up:focus {
	background-color: #00d084;
	cursor: pointer;
}

/* rs-breadcrumbs */

.rs-17 .rs-breadcrumbs {
	margin-top: 35px;
}

.rs-17 .rs-breadcrumbs .breadcrumbs {
	background: none;
	/*border: 1px solid #dddddd;*/
	padding: 8px 15px;
	margin-bottom: 20px;
	list-style: none;
	border-radius: 4px;
}

.rs-17 .rs-breadcrumbs .breadcrumbs a {
	font-size: 13px;
	color: #007691;
}

.rs-17 .rs-breadcrumbs .breadcrumbs .current {
	font-size: 13px;
}

.rs-17 .rs-breadcrumbs .breadcrumbs a:hover,
.rs-17 .rs-breadcrumbs .breadcrumbs a:focus {
	color: #03a9f4;
	text-decoration: none;
}

.fancybox-thumbs {
	top: auto !important;
	max-width: 1000px !important;
	width: auto !important;
	margin: 0 auto !important;
	bottom: 50px !important;
	left: 0 !important;
	right: 0 !important;
	height: 89px !important;
	padding: 10px !important;
	background: transparent !important;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0 !important;
	bottom: 95px !important;
}

.fancybox-thumbs {
	text-align: center !important;
}

.fancybox-thumbs > ul {
	display: inline-block !important;
	width: auto !important;
}

.fancybox-thumbs > ul > li {
	width: 18px !important;
	height: 18px !important;
	border-width: 0 !important;
	border-radius: 50%;
	margin: 0 5px !important;
}

.fancybox-caption-wrap {
	max-width: 1000px !important;
	background: transparent !important;
	margin: 0 auto !important;
	bottom: 30px !important;
}

.fancybox-caption {
	border: none !important;
	font-family: 'Open Sans', sans-serif !important;
}

.fancybox-thumbs > ul > li:before {
	background-color: rgba(0, 0, 0, 0.5) !important;
	border: none !important;
	opacity: 1 !important;
	border-radius: 0 !important;
}

.fancybox-thumbs > ul {
	overflow-y: hidden !important;
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
	opacity: 0 !important;
}

.fancybox-arrow:after {
	content: '\f105' !important;
	background-image: none !important;
	width: 80px !important;
	height: 80px !important;
	background-size: auto !important;
	background-color: transparent !important;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 65px;
	top: 20px !important;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fancybox-arrow {
	width: 80px !important;
	opacity: 1 !important;
}

.fancybox-button--close:after,
.fancybox-button--close:before {
	width: 30px !important;
}

.fancybox-button,
.fancybox-infobar__body {
	background: transparent !important;
}

.fancybox-button {
	margin-right: 30px !important;
	margin-top: 20px !important;
}

.fancybox-bg {
	background: #000 !important;
}

.grecaptcha-badge {
	opacity: 0;
}

@media (min-width: 768px) {
	.rs-17 .rs-breadcrumbs span {
		font-size: 16px;
	}
	.rs-17 .rs-breadcrumbs .breadcrumbs .current {
		font-size: 16px;
	}
	.rs-17 .rs-breadcrumbs .sep {
		margin: 0 6px;
	}}

.rs-17 .rs-breadcrumbs.catalog {
	display: block;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	scrollbar-color: #4ad3b0 #fff;
	scrollbar-width: auto;
}

*::-moz-selection,
*::-moz-selection,
*::-webkit-selection {
	background: #4ad3b0;
	color: #4ad3b0;
}

*::-moz-selection,
*::selection,
*::-webkit-selection {
	background: #4ad3b0;
	color: #4ad3b0;
}

*::-webkit-scrollbar {
	cursor: pointer;
	width: 0.5rem;
	background: #fff;
	border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #4ad3b0;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scrollbar-color: #4ad3b0 #4ad3b0;
	scrollbar-width: thin;
}

*::before::-moz-selection,
*::before::-moz-selection,
*::before::-webkit-selection,
*::after::-moz-selection,
*::after::-moz-selection,
*::after::-webkit-selection {
	background: #4ad3b0;
	color: #4ad3b0;
}

*::before::-moz-selection,
*::before::selection,
*::before::-webkit-selection,
*::after::-moz-selection,
*::after::selection,
*::after::-webkit-selection {
	background: #4ad3b0;
	color: #4ad3b0;
}

*::before::-webkit-scrollbar,
*::after::-webkit-scrollbar {
	cursor: pointer;
	width: 0.5rem;
	background: #fff;
	border-radius: 0px;
}

*::before::-webkit-scrollbar-thumb,
*::after::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #4ad3b0;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	min-width: 320px;
	width: 100%;
	margin: 0 auto;
	height: 100%;
}

body {
	color: #222631;
	line-height: 1;
	font-family: 'Montserrat' !important;
	font-size: 16px;
	background-color: #fff;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

nav,
footer,
header,
aside {
	display: block;
}

input,
button,
textarea {
	outline: none;
	font-family: 'Fira Sans';
	font-size: inherit;
}

button {
	cursor: pointer;
	color: inherit;
	background-color: inherit;
}

a {
	color: inherit;
}

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

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

body {
	font-weight: 300;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.wrapper > main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.wrapper > * {
	min-width: 0;
}

[class*='__container'] {
	margin: 0;
	width: 100%;
	max-width: 1280px;
	padding-left: 15px;
	padding-right: 15px;
}

@media (max-width: 1170px) {
	[class*='__container'] {
		max-width: 970px;
	}}

@media (max-width: 992px) {
	[class*='__container'] {
		max-width: 750px;
	}}

@media (max-width: 768px) {
	[class*='__container'] {
		max-width: 450px;
	}}

@media (max-width: 480px) {
	[class*='__container'] {
		max-width: none;
		padding-left: 10px;
		padding-right: 10px;
	}}

.spollers {
	display: -ms-grid;
	display: grid;
	gap: 25px;
	margin-top: 13px;
}

.spollers__title {
	width: 100%;
	cursor: default;
	position: relative;
	-webkit-box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	background-color: #ffffff;
	min-height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px 75px 24px 40px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

._spoller-init .spollers__title {
	cursor: pointer;
}

._spoller-init .spollers__title::after {
	content: url("/wp-content/themes/wp19/img/main/contact/chevron-down-outline.svg");
	width: 32px;
	height: 32px;
	position: absolute;
	right: 24px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: rgba(0, 118, 145, 0.1);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media (max-width: 768px) {
	._spoller-init .spollers__title::after {
		right: 20px;
	}}

._spoller-init .spollers__title._spoller-active {
	-webkit-box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0);
	box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0);
	background-color: transparent;
	min-height: 0px;
	padding: 0px;
}

._spoller-init .spollers__title._spoller-active .contact__title,
._spoller-init .spollers__title._spoller-active .contact__underground {
	display: none;
}

._spoller-init .spollers__title._spoller-active::after {
	position: absolute;
	top: 100%;
	-webkit-transform: translateY(75%) rotate(-180deg);
	-ms-transform: translateY(75%) rotate(-180deg);
	transform: translateY(75%) rotate(-180deg);
}

.spollers__body {
	-webkit-box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	background-color: #ffffff;
}

.tabs__navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 555px;
	border-bottom: 2px solid #007791;
}

.tabs__title {
	width: 100%;
	max-width: 143px;
	border-radius: 2px 2px 0 0;
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	background-color: transparent;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.33px;
	line-height: normal;
	text-transform: uppercase;
}

.tabs__title._tab-active {
	background-color: #007791 !important;
	color: #ffffff;
}

@media (any-hover: hover) and (min-width: 992px) {
	.tabs__title:hover {
		background-color: rgba(0, 119, 145, 0.7);
		color: #ffffff;
	}}

.tabs__title:nth-child(2) {
	max-width: 176px;
}

.tabs__content {
	margin-top: 25px;
}

.swiper-action {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

@media (max-width: 992px) {
	.swiper-action {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}}

.swiper-action-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 992px) {
	.swiper-action-navigation {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}}

.swiper-button-prev,
.swiper-button-next {
	left: auto;
	right: auto;
	top: 0;
	margin-top: 0px;
	position: relative;
	display: block;
	width: 60px;
	height: 11px;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0 15px;
	outline: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 0px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
	fill: #fff;
}

.swiper-button-prev svg path,
.swiper-button-next svg path {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media (any-hover: hover) and (min-width: 992px) {
	.swiper-button-prev:hover svg,
	.swiper-button-next:hover svg {
		fill: #4ad3b0;
	}

	.swiper-button-prev:hover .slide-num,
	.swiper-button-next:hover .slide-num {
		color: #4ad3b0;
	}}

.swiper-button-disabled .slide-num {
	display: none;
}

.swiper-button-lock {
	display: none;
}

.slide-num {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin: 0 7px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
	left: 0;
	width: 100%;
}

.swiper-pagination {
	position: relative;
	text-align: center;
}

.swiper-pagination-bullet {
	opacity: 1;
	background: transparent;
	border: 1px solid #007691;
}

.swiper-pagination-bullet-active {
	background: #007691;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	margin: 0 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 0%;
	-webkit-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	white-space: nowrap;
	top: 0;
	height: 8px !important;
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 0%;
	-webkit-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	white-space: nowrap;
	top: 0;
}

.rs-btn {
	z-index: 1;
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.33px;
	line-height: normal;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	background-color: #4ad3b0;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	outline: none;
	font-family:Fira Sans !important;
}

.rs-btn:focus, .rs-btn:active {
	text-decoration:none;
}

.rs-btn span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.rs-btn span::before,
.rs-btn span::after {
	position: absolute;
	content: '';
	background: #4ad3b0;
}

.rs-btn span::before {
	left: 0;
	top: 0;
	width: 0%;
	height: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.rs-btn span::after {
	right: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.rs-btn:before,
.rs-btn:after {
	position: absolute;
	content: '';
	height: 0%;
	width: 2px;
	background: #4ad3b0;
}

.rs-btn:before {
	right: 0;
	top: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.rs-btn:after {
	left: 0;
	bottom: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

@media (any-hover: hover) and (min-width: 992px) {
	.rs-btn:hover {
		background: #fff;
		color: #4ad3b0;
		text-decoration:none;
	}

	.rs-btn:hover::before,
	.rs-btn:hover::after {
		-webkit-transition: all 500ms ease;
		-o-transition: all 500ms ease;
		transition: all 500ms ease;
		height: 100%;
	}

	.rs-btn:hover span::before,
	.rs-btn:hover span:after {
		width: 100%;
	}}

.rs-other-btn {
	z-index: 1;
	height: 100%;
	width: 100%;
	font-family: 'Fira Sans';
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: -0.35px;
	line-height: 21px;
	text-align: left;
	position: relative;
	background-color: transparent;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.rs-other-btn::before {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	right: 35px;
	height: 2px;
	width: 0%;
	background: #4ad3b0;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.rs-other-btn::after {
	content: '+';
	margin-left: 13px;
	width: 22px;
	height: 22px;
	background-color: #4ad3b0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: normal;
	line-height: 21px;
	text-align: left;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media (any-hover: hover) and (min-width: 992px) {
	.rs-other-btn:hover::before {
		width: calc(100% - 35px);
		left: 0px;
		right: auto;
	}

	.rs-other-btn:hover::after {
		-webkit-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}}

.section-title {
	font-size: 36px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: -0.9px;
	line-height: normal;
	max-width: 605px;
	text-transform: none;
}

@media (max-width: 1170px) {
	.section-title {
		font-size: 30px;
	}}

.section-text {
	color: #3e4350;
	font-size: 16px;
	font-style: normal;
}

.section-text span:not(:last-child) {
	display: block;
	margin-bottom: 13px;
}

@media (max-width: 1170px) {
	.section-text {
		font-size: 14px;
	}}

.section-blockquote {
	color: #3e4350;
	font-size: 16px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 0.08px;
	line-height: 26px;
	margin-top: 19px;
	padding: 17px 27px 16px 26px;
	-webkit-box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.09);
	box-shadow: 0 2px 22px 2px rgba(0, 0, 0, 0.09);
	border-radius: 2px;
	background-color: #ffffff;
	position: relative;
}

.section-blockquote::before {
	content: '';
	position: absolute;
	left: -3px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: calc(100% - 16px);
	width: 6px;
	border-radius: 2px;
	background: #4ad3b0;
}

.card-title {
	font-size: 18px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
}

.card-text {
	font-family: 'Fira Sans';
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.07px;
	line-height: normal;
	margin-bottom: 0;
}

.block-title {
	font-size: 21px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.53px;
	line-height: normal;
}

.rs-input {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	background-color: #fff;
	border: 1px solid rgba(62, 67, 80, 0.5);
	padding: 0px 17px;
}

.bg-img {
	position: absolute;
	width: 100%;
	z-index: 1;
}

.bg-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-17 .rs-page h2.doctors-spec {
	text-transform: none;
	font-size: 21px;
	font-weight: 600;
	margin-top: 4%;
	margin-bottom: 2%;
}

.rs-17 .rs-page .doctors-table {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 30px;
}

.rs-17 .rs-page .doctors-item {
	flex: 1 0 23%;
	max-width: 262px;
}

.rs-17 .rs-page img.doctor-img {
	border: none;
	padding: 0;
	max-width: 100%;
	max-height: 260px;
}

.rs-17 .rs-page h3.doctor-name {
	font-size: 18px;
	font-weight: 600;
}

.rs-17 .rs-page p.doctor-info {
	font-size: 14px;
	line-height: 1.5em;
	color: #3d5c63;
}

.rs-17 .rs-page a.doctor-btn {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 13px;
	color: #005568;
	text-decoration: underline;
}

.rs-17 .rs-page p.doctor-location {
	color: #3d5c63;
	font-size: 13px;
}

blockquote.tab-body__blockquote.section-blockquote.doc {
	display: flex;
	justify-content: flex-start;
	gap: 12%;
}

blockquote.tab-body__blockquote.section-blockquote.doc p {
	font-size: 13px;
	font-weight: 400;
	color: #3d5c63;
	line-height: 1em;
	margin-top: 0;
	margin-bottom: 0;
}

@media (max-width: 1170px) {
	blockquote.tab-body__blockquote.section-blockquote.doc {
		flex-wrap: wrap;
		justify-content: flex-start;
	}}

.text-transform-page-title {
	text-transform: none;
}

.drop-style {
	background: white;
	padding: 15px;
	border-bottom: 1px solid lightgrey;
	border-left: 1px solid lightgrey;
	border-right: 1px solid lightgrey;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* ------------------------------------- СТРАНИЦА РЕЗУЛЬТАТЫ ЛЕЧЕНИЯ ------------------------------------- */

.banner {
	display: flex;
	align-items: center;
	width: 100%;
	/*min-height: 400px;*/
	background-position: right;
	background-repeat: no-repeat;
}
@media (max-width: 565px) {
	.banner {
		/*max-height: 354px;*/
		background-position: right -450px bottom 0;
	}}
.results-banner__title {
	text-transform: uppercase;
	font-size: 45px;
	font-weight: 800;
	line-height: 55px;
	letter-spacing: 1.3500000238px;
	margin-bottom: 20px;
}
@media (max-width: 565px) {
	.results-banner__title {
		font-size: 26px;
		font-weight: 800;
		line-height: 32px;
		letter-spacing: 0em;
		text-align: center;
	}}
.banner__subtitle {
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	letter-spacing: 0em;
	margin-bottom: 35px;
}
@media (max-width: 565px) {
	.banner__subtitle {
		font-size: 14px;
		font-weight: 300;
		line-height: 17px;
		letter-spacing: 0em;
		text-align: center;
		margin-bottom: 25px;
	}}
@media (max-width: 565px) {
	.banner____control {
		display: flex;
		justify-content: center;
	}}
.banner__button {
	width: 272px;
	height: 54px;
	background: #4ad3b0;
	color: white;
	border-radius: 5px;
	margin: auto;
}
@media (max-width: 565px) {
	.banner__button {
		display: flex;
		justify-content: center;
		align-items: center;
	}}
.banner__button-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 17px;
	letter-spacing: 0px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner__button-text::before {
	content: '';
	background-image: url("/wp-content/themes/wp19/img/main/results/Vector.svg");
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 4px;
}

.controls {
	margin-top: 53px;
	margin-bottom: 40px;
}
@media (max-width: 565px) {
	.controls {
		margin-top: 28px;
	}}
.controls__row {
	display: flex;
	gap: 7px;
}
@media (max-width: 565px) {
	.controls__row {
		flex-wrap: wrap;
	}}
.results-controls__item {
	padding-left:20px;
	padding-right:20px;
	min-height: 47px;
	border: 1px solid lightgray;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 150ms;
	text-decoration: none;
}
.results-controls__item:hover {
	background: #007691;
	color: white;
	text-decoration: none;
}
@media (max-width: 565px) {
	.results-controls__item {
		min-width: 70px;
		min-height: 36px;
		font-size: 14px;
		padding: 6px;
	}}

.reviews {
	/*margin-top: 62px;
	margin-bottom: 100px;*/
}
@media (max-width: 565px) {
	.reviews {
		/*margin-top: 25px;*/
	}}
.results-reviews__row {
	display: flex;
	gap: 20px;
}
@media (max-width: 565px) {
	.results-reviews__row {
		flex-direction: column;
		gap: 10px;
	}}
.reviews__container {
	min-height: 350px;
	height: 100%;
}
@media (max-width: 565px) {
	.reviews__container {
		min-height: 200px;
	}}
.reviews__info {
	background: #deedf0;
	padding: 35px;
	min-height: 468px;
	max-width: 385px;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0px 8px 27px 0px rgba(189, 189, 189, 0.25);
}
@media (max-width: 565px) {
	.reviews__info {
		max-width: none;
		padding: 20px;
		min-height: 250px;
		box-shadow: none;
	}}
.reviews__name {
	font-size: 22px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0em;
	margin-bottom: 10px;
}
@media (max-width: 565px) {
	.reviews__name {
		margin-bottom: 6px;
		font-size: 16px;
	}}
.reviews__notions {
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0em;
	margin-bottom: 25px;
}
@media (max-width: 565px) {
	.reviews__notions {
		margin-bottom: 15px;
		font-size: 14px;
	}}
.reviews__category::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background-color: black;
	border-radius: 50%;
	margin-bottom: 4px;
	margin-right: 7px;
}
.reviews__course {
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0em;
	margin-bottom: 10px;
}
@media (max-width: 565px) {
	.reviews__course {
		font-size: 15px;
	}}
.reviews__services {
	display: inline-flex;
	flex-wrap: wrap;
}
.reviews__service {
	margin: 4px 4px 4px 0;
	border-radius: 50px;
	height: 35px;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
}
@media (max-width: 565px) {
	.reviews__service {
		font-size: 13px;
	}}
.reviews__link {
	margin: -25px 0 20px;
}
@media (max-width: 565px) {
	.reviews__link {
		margin-top: 25px;
	}}
.reviews__link a {
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0em;
	color: #007691;
	text-decoration: none;
	position: relative;
	margin-top: 20px;
	margin-left: 60px;
}

.reviews__link a:hover {
	color: #004E60;
	text-decoration: none;
}

.reviews__link a::before {
	content: url("/wp-content/themes/wp19/img/main/review.svg");
	position: absolute;
	top: -25px;
	left: -60px;
}
.results-reviews__text {
	box-shadow: 3px -4px 11px 0px rgba(217, 217, 217, 0.1),
		13px -15px 20px 0px rgba(217, 217, 217, 0.09),
		28px -34px 27px 0px rgba(217, 217, 217, 0.05),
		50px -61px 32px 0px rgba(217, 217, 217, 0.01),
		-4px 0px 10px 0px rgba(229, 229, 229, 0.25);
	max-width: 730px;
	width: 100%;
	min-height: 468px;
	padding: 33px;
	border-radius: 20px;
}
@media (max-width: 565px) {
	.results-reviews__text {
		padding: 20px;
	}}
.reviews__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0em;
	margin-bottom: 10px;
}
.reviews__problem,
.reviews__result {
	padding: 16px 25px;
	background: #f8f8f8;
	border-radius: 10px;
}
.reviews__problem {
	min-height: 97px;
	margin-bottom: 26px;
}
@media (max-width: 565px) {
	.reviews__problem {
		margin-bottom: 20px;
	}}
.reviews__result {
	position: relative;
	height: 213px;
}
@media (max-width: 565px) {
	.reviews__result {
		height: 334px;
	}}
.reviews__result-text {
	height: 176px;
	overflow-y: auto;
}
@media (max-width: 565px) {
	.reviews__result-text {
		height: 304px;
	}}
.reviews__result-text::-webkit-scrollbar {
	right: -20px;
	width: 4px;
}
.reviews__result-text::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.reviews__result-text::-webkit-scrollbar-thumb {
	border-radius: 100px;
	background: #d9d9d9;
	box-shadow: inset 2px 2px 5px 0 rgba(255, 255, 255, 0.5);
}

.shadow {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 68px;
	border-radius: 0px 0px 10px 10px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		#f4f4f4 67.65%
	);
}

.loadmore-button {
	border-radius: 5px !important;
	border: 1px solid #007691 !important;
	color: var(--text, #222631) !important;
}

hr {
	margin: 40px 0 !important;
}
@media (max-width: 565px) {
	hr {
		margin: 25px 0 !important;
	}}
/* ------------------popup------------------------- */
.popup {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 100ms;
	overflow: hidden;
}
.popup:target {
	opacity: 1;
	visibility: visible;
}
.popup__content {
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 360px;
	padding-bottom: 20px;
	background-color: white;
	box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	overflow: hidden;
}
.popup__form-btns {
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-img {
	max-height: 80vh;
	max-width: 720px;
	width: 100%;
	height: 100%;
}

.popup__close-button {
	transition: 150ms;
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #007691;
	color: var(--text, #222631);
	text-decoration: none;
	padding: 10px;
	margin-top: 10px;
}
.popup__close-button:hover {
	text-decoration: none;
	background-color: var(--text, #007691);
	color: white;
}
.popup__close-icon {
    position: absolute;
    top: 15px; /* отступ от верхнего края */
    right: 15px; /* отступ от правого края */
    font-size: 24px; /* размер шрифта для крестика */
    color: var(--text, #222631);
    text-decoration: none;
    width: 40px; /* ширина кнопки */
    height: 40px; /* высота кнопки */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* делает кнопку круглой */
    background-color: rgba(255, 255, 255, 0.8); /* цвет фона кнопки */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* тень для кнопки */
    transition: background-color 150ms, color 150ms; /* плавный переход */
}

.popup__close-icon:hover {
    background-color: #007691; /* цвет фона при наведении */
    color: white; /* цвет текста при наведении */
}
/* ------------------END popup------------------------- */
@media all and (min-width: 768px) {
	.banner.clinic-banner .banner__item {
		background-size: contain;
	}}

@media (max-width: 1040px) {
	.banner__item {
		background-image: none !important;
	}}

/* ------------------Новый дизайн блока с ценами------------------------- */

.price__title {
	color: #404040;
	text-align: center;
	font-size: 45px;
	font-weight: 700;
	letter-spacing: 1.35px;
	margin-bottom: 36px;
	text-transform: none;
}
@media (max-width: 565px) {
	.price__title {
		font-size: 20px;
	}}
.price__tabs {
	display: flex;
	gap: 7px;
	overflow-x: auto;
}
@media (max-width: 565px) {
	.price__tabs {
		gap: 5px;
	}}
.price__tab {
	min-width: 230px;
	min-height: 62px;
	padding: 0 10px;
	background: #f2f2f2;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: 250ms;
	color: #828282;
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
}
@media (max-width: 565px) {
	.price__tab {
		min-width: 158px;
		min-height: 49px;
	}}
.price__tab.tab-link-active,
.price__tab:hover {
	background: #007691;
	color: #ffffff;
}
.price__doctor {
	color: #222631;
	font-size: 20px;
	font-weight: 600;
}
.price__item {
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
	margin-bottom: 15px;
	padding: 14px 84px;
}
.price__item:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}
@media (max-width: 565px) {
	.price__item {
		padding: 21px 18px;
	}}
.price__service {
	display: flex;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid lightgray;
	justify-content: space-between;
}
.price__service:last-child {
	border-bottom: none;
}
.price__name {
	min-width: 771px;
	color: #222631;
	font-size: 16px;
	margin: 0;
}
@media (max-width: 1400px) {
	.price__name {
		min-width: 400px;
	}}
@media (max-width: 1175px) {
	.price__name {
		min-width: 0;
		max-width: 240px;
		margin: 0;
	}}
.price__cost {
	color: #222631 !important;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	text-wrap: nowrap;
	margin: 0;
}



@media (max-width: 565px) {
	.price__cost {
		margin: 0;
		font-size: 16px;
	}}
.price__sign {
	max-height: 40px;
	border-radius: 5px;
	border: 1px solid #4ad3b0;
	background: #4ad3b0;
	padding: 10px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.57px;
}
.price__sign span::before {
	content: 'Записаться';
}

@media (max-width: 565px) {
	.price__sign span::before {
		content: '';
	}}
@media (max-width: 565px) {
	.price__sign {
		width: 50px;
		height: 35px;
		background-image: url("/wp-content/themes/wp19/img/main/services/price-sign-button.svg") !important;
		background-repeat: no-repeat !important;
		background-position: center !important;
	}}
.price__controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 52px;
}
@media (max-width: 565px) {
	.price__controls {
		flex-direction: column;
		gap: 0;
	}}
.cm-form textarea {
	width: 100%;
	border: 1px solid #4ad3b0;
	padding: 10px;
	width: 100% !important;
}
/* ------------------END Новый дизайн блока с ценами--------------------- */

/* Статьи */
.rb-banner {
	height: 400px;
	position: relative;
	background-color: #ffeed0;
	padding-top: 172px;
	padding-bottom: 76px;
	overflow: hidden;
}

.rb-banner .container {
	position: relative;
	z-index: 4;
}

.rb-banner-bg {
	position: absolute;
	top: 0;
	right: 10%;
	content: '';
	width: 100%;
	height: 100%;
	z-index: 1;
	max-width: 800px;
}

.rb-banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rb-banner__title {
	color: #424242;
	font-size: 45px;
	font-weight: 800;
	text-transform: uppercase;
}

.rb-tags-container {
	display: flex;
	gap: 7px;
	margin-top: 50px;
}

.rb-tags__item {
	background-color: #fff;
	color: #424242;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 500;
}

.rb-tags__item.active {
	background-color: #007691;
	color: #ffffff;
}

.rb-tags__item:hover {
	cursor: pointer;
}

.rb-articles {
	margin-top: 63px;
	margin-bottom: 111px;
}

.rb-articles .container {
	display: flex;
}

.rb-articles-filter {
	width: 246px;
}

.rb-articles-list {
	width: calc(100% - 290px);
	margin-left: auto;
}

.articles-list {
	display: flex;
	flex-direction: column;
}

.articles-item {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 50px;
}

.articles-item::after {
	position: absolute;
	left: 0;
	bottom: -25px;
	content: '';
	height: 1px;
	width: 100%;
	background-color: #dadada;
}

.articles-item:last-child::after {
	display: none;
}

.articles-item-img {
	width: 268px;
	height: 193px;
	overflow: hidden;
}

.articles-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all ease-in-out 0.8s;
	margin: 0;
}
.articles-item-info {
	width: calc(100% - 290px);
}

.articles-info__date {
	margin-bottom: 10px;
	color: #828282;
	font-size: 14px;
}

.articles-info__title {
	margin-bottom: 15px;
	color: #424242;
	font-size: 22px;
	font-weight: 600;
}

.articles-item:hover .articles-item-img img {
	transform: scale(1.15);
	transition: all ease-in-out 0.8s;
}

.articles-item:hover .articles-info__title {
	text-decoration: none;
	color: #007691;
}

.articles-info__descr {
	margin-bottom: 44px;
	color: #424242;
	font-size: 16px;
}

.articles-info-tags {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.articles-info-tag {
	padding: 8px 10px;
	background-color: #f2f2f2;
	border-radius: 50px;
	color: #007691;
	font-size: 14px;
}

.articles-btn {
	width: 100%;
	height: 50px;
	background-color: #007691;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.articles-filter__title {
	color: #424242;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.articles-filters__more {
	font-size: 14px;
	margin-top: 20px;
	color: #424242;
	text-decoration: underline;
	position: relative;
	padding-bottom: 1px;
}

.articles-filters__more:hover {
	color: #007691;
	cursor: pointer;
}

.articles-filters__reset::after {
	position: absolute;
	content: '';
	top: -26px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #dadada;
}

.articles-filters__reset {
	display: flex;
	gap: 9px;
	align-items: center;
	position: relative;
	margin-top: 47px;
}

.articles-filters__reset span {
	color: #828282;
	font-size: 14px;
	font-weight: 500;
}

.articles-filters__reset svg {
	fill: #828282;
}

.articles-filters__reset:hover {
	cursor: pointer;
}

.articles-filters__reset:hover span {
	color: #007691;
}

.articles-filters__reset:hover svg {
	fill: #007691;
}
.articles-filters__item {
	margin-bottom: 14px;
}

.check-btn {
	display: block;
	position: relative;
	padding-left: 38px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	color: #424242;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.check-btn input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid #d9d9d9;
}

.check-btn:hover input ~ .checkmark {
	background-color: #f2f2f2;
}

.check-btn input:checked ~ .checkmark {
	background-color: #007691;
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}

.check-btn input:checked ~ .checkmark:after {
	display: block;
}

.check-btn .checkmark:after {
	left: 8px;
	top: 1px;
	width: 9px;
	height: 18px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.rb-tags-container.pc-hidden {
	display: none;
}
@media all and (max-width: 1024px) {
	.rb-articles-filter {
		width: 20%;
	}
	.rb-articles-list {
		width: 77%;
	}

	.articles-item:hover .articles-item-img img {
		transform: scale(1.15);
		transition: all ease-in-out 0.8s;
	}

	.articles-item:hover .articles-info__title {
		text-decoration: none;
		color: #424242;
	}}

@media all and (max-width: 1550px) {
	.rb-banner-bg {
		right: 20px;
	}}

@media all and (max-width: 1300px) {
	.rb-banner-bg {
		max-width: 40vw;
	}}

@media all and (max-width: 992px) {
	.rb-articles .container {
		flex-direction: column;
	}

	.rb-banner {
		height: 230px;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.rb-tags-container {
		display: none;
	}

	.rb-articles {
		margin-top: 34px;
		margin-bottom: 51px;
	}

	.rb-articles-filter {
		width: 100%;
		margin-bottom: 22px;
		flex-wrap: wrap;
	}

	.rb-articles-list {
		width: 100%;
	}
	.rb-banner__title {
		font-size: 26px;
		text-align: center;
	}
	.rb-banner-bg {
		max-width: 450px;
		right: -70px;
		bottom: -80px;
		top: unset;
	}
	.articles-filter__title {
		display: none;
	}
	.articles-filters__list {
		display: none;
	}
	.articles-filters__more {
		display: none;
	}
	.articles-filters__reset {
		display: none;
	}
	.rb-tags-container.pc-hidden {
		display: flex;
		flex-wrap: wrap;
	}
	.rb-tags-container {
		margin-top: 0;
	}
	.rb-tags__item {
		border: solid 1px #d0d0d0;
		padding: 8px 10px;
	}
	.rb-tags__item.active {
		border: solid 1px #007691;
	}
	.articles-list {
		padding-left: 0;
	}}

@media all and (max-width: 768px) {
	.rb-banner-bg {
		right: -20%;
	}
	.articles-item {
		flex-direction: column;
		margin-bottom: 40px;
	}
	.articles-item::after {
		bottom: -20px;
	}

	.articles-item-info {
		width: 100%;
	}
	.articles-item-img {
		width: 100%;
		height: 350px;
		margin-bottom: 15px;
	}}

@media all and (max-width: 576px) {
	.rb-banner-bg {
		right: -30%;
		bottom: -44%;
		top: unset;
	}
	.articles-item-img {
		height: 250px;
	}}
@media all and (max-width: 450px) {
	.articles-info__date {
		font-size: 13px;
	}
	.articles-info__title {
		margin-bottom: 10px;
	}
	.articles-info__descr {
		margin-bottom: 25px;
	}
	.articles-info-tags {
		flex-wrap: wrap;
	}
	.articles-info-tag {
		font-size: 13px;
		padding: 7px 10px;
	}
	.articles-item-img {
		height: auto;
	}}

/* Всплывашка */
.rb-parkings {
	margin-top: 30px;
	position: relative;
}

.rb-parkings-header {
	display: flex;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 4px;
	border: 1px solid rgba(34, 105, 131, 0.2);
}

.rb-parkings-header:hover {
	cursor: pointer;
}
.rb-parkings-header.active {
	background: #e8f0f2;
}
.rb-parkings-header.active .rb-parking-arrow {
	transform: rotate(-180deg);
	transition: all ease-in-out 0.8s;
}

.rb-parking-arrow {
	transform: rotate(0deg);
	transition: all ease-in-out 0.8s;
}

.rb-parkings-header p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #226983;
}
.rb-parking-list {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	padding: 16px 36px;
	border: 1px solid #f0f0f0;
	border-top: unset;
	background: #fff;
	z-index: 10;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	transition: all ease-in-out 0.8s;
}
.rb-parking-list.active {
	display: block;
	transition: all ease-in-out 0.8s;
}

.rb-parking-list-item {
	margin-bottom: 12px;
}

.rb-parking-list-item__title {
	font-weight: 600;
	font-size: 14px;
	color: #424242;
	position: relative;
}

.rb-parking-list-item__title::before {
	position: absolute;
	content: '';
	top: 5px;
	left: -18px;
	width: 8px;
	height: 8px;
	background-color: #226983;
	border-radius: 50%;
}

.rb-parking-list-item__descr {
	font-size: 14px;
	color: #424242;
}

/* 404 */
.rb-404 {
	position: relative;
	z-index: 3;
	font-family: 'Montserrat', sans-serif !important;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rb-404-bg {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.rb-404-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rb-404__title {
	text-align: center;
	margin-top: 90px;
	color: #226983;
	font-size: 4vw;
	font-weight: 600;
	max-width: 705px;
	margin: 90px auto 0;
}

.rb-404__nums {
	color: #226983;
	font-size: 20vw;
	font-style: normal;
	font-weight: 600;
	text-align: center;
	margin: 0 auto;
	line-height: 1;
}

.rb-404__descr {
	font-size: 32px;
	font-weight: 600;
	margin-top: 29px;
	color: #226983;
	text-align: center;
	margin: 0 auto;
}

.rb-404 .rs-parallax__button {
	height: 77px;
	max-width: 352px;
	margin: 80px auto 30px;
}

.rb-404 .rs-parallax__button span {
	font-size: 18px;
}

@media all and (max-width: 992px) {
	.rb-404__nums {
		font-size: 250px;
	}
	.rb-404__title {
		font-size: 35px;
		margin: 0 auto;
	}
	.rb-404 {
		display: flex;
		justify-content: center;
		align-items: center;
	}}

@media all and (max-width: 768px) {
	.rb-404__nums {
		font-size: 150px;
	}
	.rb-404__title {
		font-size: 30px;
		margin: 0 auto 20px;
	}}

@media all and (max-width: 420px) {
	.rb-404__descr {
		font-size: 25px;
	}
	.rb-404 .rs-parallax__button {
		max-width: fit-content;
		height: unset;
		margin: 40px auto 20px;
	}
	.rb-404 .rs-parallax__button span {
		font-size: 14px;
		padding: 10px;
	}}

@media all and (max-width: 350px) {
	.rb-404__title {
		font-size: 21px;
	}
	.rb-404__nums {
		font-size: 120px;
	}
	.rb-404__descr {
		font-size: 16px;
	}}

/* Single article*/

.rb-article-banner {
	width: 100%;
	background-color: #ffeed0;
}
.article-container {
	width: 100%;
}
.article-nav {
	color: #828282;
	font-size: 14px;
	font-weight: 500;
	margin-top: 76px;
	display: flex;
	gap: 15px;
	align-items: center;
}
.article-nav a {
	color: #828282;
	font-size: 14px;
}
.article-nav a:hover {
	text-decoration: none;
}
.article__title {
	margin-top: 10px;
	font-weight: 700;
	font-size: 45px;
	color: #424242;
}
.article__descr {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 500;
}
.article-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 36px;
	margin-bottom: 76px;
}
.article-terms__item {
	background-color: #fffbf3;
	border-radius: 50px;
	padding: 8px 10px;
	color: #007691;
	font-size: 14px;
}
.article__image {
	width: 100%;
	height: 386px;
	margin-top: 53px;
}
.article__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-titles {
	background-color: #fafafa;
	padding: 25px 38px;
	margin: 30px 0;
}
.articles-headers::after {
	position: absolute;
	top:0;
	left: 0;
	content: '';
	width: 2px;
	height: 100%;
	background-color: #DFDFDF;
}
.article-titles h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}
.articles-headers {
	padding-left: 20px;
	position: relative;
	margin-top: 14px;
}

.articles-list__item {
	position: relative;
	margin-bottom: 15px;
	font-size: 17px;
}
.articles-list__item:last-child {
	margin-bottom: 0;
}
.articles-list__item a{
	color: #424242;
	text-decoration: none;
}
.articles-list__item:hover a{
	color: rgba(0, 118, 145, 1);
	text-decoration: none;
}
.articles-list__item:hover::after {
	position: absolute;
	width: 2px;
	top: 0;
	left: -20px;
	content: '';
	background-color: rgba(0, 118, 145, 1);
	height: 100%;
	z-index: 2;
}


.article-content h2 {
	color: #424242;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
}
.article-content p {
	font-size: 18px;
	font-weight: 400;
	color: #424242;
	margin-bottom: 35px;
}
.article-content ul {
	padding-left: 31px;
	margin-bottom: 25px;
}
.article-content ul li {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	color: #424242;
}
.article-content ul li::before {
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	background-color: #424242;
	border-radius: 50%;
	top: 10px;
	left: -20px;
}
.article-notice {
	padding: 25px 26px;
	background-color: #f1f9fb;
	color: #007691;
	font-size: 18px;
	font-weight: 500;
	margin: 25px 0;
}

.main-video {
	min-height: 600px;
}

@media (max-width: 565px) {
	.main-video {
		min-height: 230px;
	}}

@media (max-width: 768px) {
	.spollers-content {
		margin-bottom: 100px;
	}
	.rb-parkings {
		margin-top: 70px;
	}}

.related-methods {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}
.related-methods-item {
	display: flex;
	flex-direction: row;
	gap: 30px;
	background-color: #F4F4F4;
	padding: 16px 35px;
}
.related-item__image {
	position: relative;
	width: 169px;
	height: auto;
	z-index: 1;
}
.related-item__image::after {
	position: absolute;
	top: -8px;
	left: -8px;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #007691;
	z-index: -1;
}
.related-item__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.related-item__text {
	width: 70%;
}
.related-item__text__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 6px;
}
.related-item__text__content {
	font-size: 16px;
	margin-bottom: 34px;
}

.related-item__link {
	color: #ffffff;
	text-align: center;
	padding: 10px 15px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	text-decoration: none;
	background-color: #4AD3B0;
}
.related-item__link:hover {
	text-decoration: none;
}

.article-share {
	margin-top: 70px;
	position: relative;
	margin-bottom: 60px;
}
.article-share::after {
	position: absolute;
	content: '';
	top: -35px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(208, 208, 208, 1);
}
.article-share__title {
	margin-bottom: 18px;
	font-size: 20px;
	color: #424242;
	font-weight: 600;
}
.article-shaer-list {
	display: flex;
	gap: 8px;
}
.interesting {
	margin-bottom: 65px;
	background-color: #DEEDF0;
}
.interesting__title {
	font-size: 28px;
	margin-top: 65px;
	margin-bottom: 46px;
	text-transform: inherit;
}

.interesting-list .articles-info-tag {
	background-color: #ffffff;
}

@media all and (max-width: 992px) {
	.article-content p {
		font-size: 16px;
	}
	.article-content h2 {
		font-size: 22px;
	}
	.article-content ul li {
		font-size: 16px;
	}
	.article-notice {
		font-size: 16px;
	}
	.article__title {
		font-size: 32px;
	}
	.article-terms__item {
		font-size: 13px;
	}
	.article__descr {
		font-size: 14px;
	}
	.article-nav {
		margin-top: 30px;
	}
	.article-terms {
		margin-bottom: 23px;
		margin-top: 25px;
	}
	.article__descr {
		margin-top: 10px;
	}
	.article-titles {
		padding: 24px;
	}
	.articles-list__item a {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.article-titles {
		margin: 25px 0px;
	}}

@media all and (max-width: 768px) {
	.rb-article-page .article-container {
			max-width: unset;
			padding: 0 10px;
		}
		.interesting .article-container {
			max-width: unset;
			padding: 0 10px;
		}
		.article__title {
			font-size: 26px;
		}
		.article-content h2 {
			font-size: 20px;
		}
		.articles-info__title {
			font-size: 16px;
		}
		.articles-info__descr {
			font-size: 14px;
		}}


@media all and (max-width: 576px) {
	.related-methods-item {
		flex-direction: column;
		padding: 0 20px 23px;
		gap: 19px;
	}
	.related-item__text {
		width: 100%;
	}
	.related-item__text__title {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.related-item__text__content {
		margin-bottom: 20px;
	}
	.related-methods {
		gap: 56px;
		margin-top: 60px;
	}
	.related-item__image  {
		margin-top: -36px;
		width: 120px;
	}
	.related-item__link {
		display: block;
	}}

@media(max-width:1840px){
	.title.banner__title{
		max-width:500px;
		font-size:30px
	}
	  .banner.clinic-banner .banner__item{
		 background-size:800px
	 }}
 
 @media(max-width:1200px){
	 .banner.clinic-banner .banner__item{
		 background-image:none!important;
	 }}

.hidden {
	display: none;
  }


.maintext{
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 400;
	line-height: 23.2px;
}
.container-sm{
	max-width: 979px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.newbac .rs-17 .rs-breadcrumbs .breadcrumbs{
	padding: 8px 0;
}
.present{
	background: #E1EDF0;
}
@media(max-width: 768px){
	.present{
		padding-top: 40px;
		padding-bottom: 40px;
	}}
.present__box{
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 56px;
}
@media(max-width: 768px){
	.present__box{
		grid-template-columns: 1fr;
	}}
.present__content{
	padding-top: 36px;
}
@media(max-width: 768px){
	.present__content{
		padding-top: 0px;
	}}
.present__title{
	margin-top: 0;
	margin-bottom: 24px;
	font-family: Montserrat;
	font-size: 36px;
	font-weight: 700;
	line-height: 52.2px;
	text-transform: initial;
}
@media(max-width: 768px){
	.present__title{
		font-family: Montserrat;
		font-size: 30px;
		font-weight: 700;
		line-height: 43.5px;
	}}
.present__text{
	margin-bottom: 22px;
}

.present__btn{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 289px;
	width: 100%;
	height: 56px;
	margin-top: 40px;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 600;
	line-height: 15.85px;
	color: #FFF;
	text-transform: uppercase;
	border-radius: 1px;
	background: #4AD3B0;
}
/* .present__btn:hover{
	background: #3ba58a;
    color: #fff; 
} */
@media(max-width: 768px){
	.present__btn{
		max-width: 390px;
		width: 100% !important;
	}}
.present__foto{
	width: 100%;
	height: 433px;
    object-fit: contain;
	margin-bottom: 0;
}
@media(max-width: 768px){
	.present__foto{
		display: none;
	}}

.newbac-indications{
	margin-bottom: 103px;
	padding-top: 32px;
}
@media(max-width: 768px){
	.newbac-indications{
		margin-bottom: 80px;
	}}
.newbac-indications__title{
	margin-top: 0;
	margin-bottom: 25px;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.6px;
	letter-spacing: -0.02em;
	text-transform: initial;
}
.newbac-indications__text{
	margin-bottom: 22px;
}
.newbac-list__item{
	position: relative;
	padding-left: 24px;
}
.newbac-list__item:before{
	content: '';
	position: absolute;
	left: 10px;
    top: 11px;
	display: block; 
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #222631;
}

.newbac-procedure{
	margin-bottom: 130px;
}
@media(max-width: 768px){
	.newbac-procedure{
		margin-bottom: 80px;
	}}
.newbac-info{
	padding: 0 80px 51px 80px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
	border-radius: 24px;
}
@media(max-width: 768px){
	.newbac-info{
		padding: 0 20px 20px;
 
	}}
.newbac-info__titlebox{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 339px;
	height: 56px;
	margin: 0 auto 40px auto;
	border-radius: 0 0 16px 16px;
	background: #4AD3B0;
}
@media(max-width: 768px){
	.newbac-info__titlebox{
		max-width: 308px;
	}}
.newbac-info__title{
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 600;
	line-height: 15.85px;
	text-transform: uppercase;
	color: #FFF;
}
.newbac-info__text{
	margin-bottom: 23px;
}

.newbac-modal{
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding-bottom: 100px;
	background: rgba(0, 0, 0, 0.5);
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: all .3s;
}
.newbac-modal.is-visible{
	opacity: 1;
	pointer-events: initial;
}
.newbac-modal.is-hidden{
	opacity: 0;
	pointer-events: none;
}
.newbac-modal__body{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 657px;
	width: 100%;
	margin-top: 100px;
	background: #FFF;
	opacity: 0;
	transform: translateY(-30px);
	transition: all .3s;
}
@media(max-width: 768px){
	.newbac-modal__body{
		grid-template-columns: 1fr;
		max-width: 328px;
	}}
.newbac-modal.is-visible .newbac-modal__body{
	opacity: 1;
	transform: translateY(0px);
}
.newbac-modal.is-hidden .newbac-modal__body{
	opacity: 0;
	transform: translateY(30px);
}
.newbac-modal__close{
	position: absolute;
	right: 8px;
	top: 8px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	transition: all .3s;
}

.newbac-modal__close svg{
	transition: all .3s;
}
.newbac-modal__close:hover svg{
	transform: rotate(90deg);
}
.newbac-modal__content{
	display: flex;
	flex-direction: column;
	padding: 20px;
}
@media(max-width: 768px){
	.newbac-modal__content{
		order: 2;
	}}
.newbac-modal__title{
	margin-top: 0;
	margin-bottom: 16px;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 500;
	line-height: 26.1px;
	color: #222631;
}
.newbac-modal__text{
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 20.3px;
	color: #222631;
}
.newbac-modal__text a{
	font-weight: 600;
	color: #007691;
	text-decoration: none;
}
.newbac-modal__text a:hover{
	text-decoration: none;
}
.newbac-modal__link{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	margin-top: auto;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 600;
	line-height: 15.85px;
	text-transform: uppercase;
	color: #FFF;
	background: #007691;
}
.newbac-modal__link:hover{
	color: #FFF;
}
@media(max-width: 1200px){
	.banner__info {
                padding: 50px 0 30px !important;
        }

	.-container-xl, .-container-lg, .-container-md, .-container-sm, .-container {
        	max-width: 100% !important;
		padding: 0 20px !important;
    	}

	.price__item{
		padding: 14px 28px;
	}

	.cm-clinic-adv__row{
		margin: 0 !important;
	}

	.cm-methods__row {
    		margin: 0 !important;
	}}

@media(max-width: 1000px){
	.carousel-doctors__item-inner .carousel-doctors__img .doctors-detail-foto{
		object-fit: contain !important;
    		object-position: center !important;
	}}

@media(max-width: 768px){
	.carousel-doctors__item-inner .carousel-doctors__img .doctors-detail-foto{
		object-fit: contain !important;
    		object-position: center !important;
	}


	.newbac-modal__link{
		margin-top: 12px;
	}}
.newbac-modal__foto{
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-bottom: 0;
}
.slider-main-btn-container{
	position: relative;
}

.banner__item .container {
	width: 1400px;
	max-width: unset;
}

.menu-item a {
	cursor:pointer;	
}

.menu-item a:hover {
	text-decoration:none !important;
}

.services-item:hover {
	text-decoration:none !important;
}

.tab-body__text a:hover, .tab-body__text a:active, .tab-body__text a:focus {
	text-decoration:none !important;
	color:#4AD3B0;
}

.tab-body__text a span:hover {
	color:#4AD3B0;
}

.tab-body__text a {
	transition: 1s all ease;
}

.tab-body__text a span {
	transition: 1s all ease;
}

.news-article__link:hover {
	text-decoration:none !important;
}

.contact-list__link:hover {
	text-decoration:none !important;	
}

.contact-list__menu a:hover {
	text-decoration:none !important;		
}

.rs-page a {
	text-decoration:none;
}

.rs-page a:hover {
	text-decoration:none;
}

.techofix-hover img{
	transition: transform 0.4s ease;
	max-width: 80px;
}

.techofix-hover:hover img{
	transform: translateY(-10px);
}

.review-star svg path{
	fill: #EEF1F0;
}

.review-star.active svg path{
	fill: #01687B;
}

.accordion__item-content--show{
	height: 100% !important;
	max-height: 100% !important;
}

.burger-menu__accordion-item-child{
	margin-left: 8px;
} 

.header .burger-menu{
	z-index: 110;
}

.social__item-link-border{
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px;
	border-radius: 4px;
}

.img-social-new{
	width: 24px;
	height: 24px;
	margin: 0;
}

@media (max-width: 760px) {
    .cl-footer__column .cl-footer__column-mob, .cl-footer__column .social-mobile {
        display: flex; 
    }}



.section table {
    width: 100% !important
}

.section table {
    min-width: 600px;
    width: 100%;
    table-layout: auto;
}

@media (max-width: 768px) {
    .section .table-wrap {
        width: 100vw;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 0;
    }

    .section table {
        min-width: 600px;
        font-size: 14px;
    }}

.section table tr:nth-child(even) {
    background: #f7f7f7 !important
}

.section table tr:nth-child(odd) {
    background: #f1f1f1 !important
}

/*.section table tr:first-child {
    background: -webkit-gradient(linear, right top, left top, from(#eef1f0), to(#eef1f0)) !important;
    background: -o-linear-gradient(right, #eef1f0 0%, #eef1f0 100%) !important;
    background: linear-gradient(270deg, #eef1f0 0%, #eef1f0 100%) !important;
	color: #fff !important;
}

.section table tr:first-child td {
    color: #fff;
    font-weight: 700;
    text-align: center
}

.section table tr:first-child td:first-child {
    border-top-left-radius: 5px
}

.section table tr:first-child td:last-child {
    border-top-right-radius: 5px
}

.section table tr:first-child td:first-child {
    text-align: center;
	padding: 10px 10px !important;
}*/

.section table td {
    padding: 5px;
    text-align: center
}

.section table tr td:first-child {
    text-align: left;
	padding: 10px 10px !important;
}

.section table td img {
    margin: 0 auto;
    display: block
}

.page__consultation .consultation__form-label-check-text a{
	color: #fff;
	transition: all 0.5s ease;
}

.page__consultation .consultation__form-label-check-text a:hover{
	color: #23527c
}

.SmartCaptcha-Shield.SmartCaptcha-Shield_visible.SmartCaptcha-Shield_position_right{
	display:none;
}

/* css/new-style.css */
.-container,
.-container-fluid,
.-container-xxl,
.-container-xl,
.-container-lg,
.-container-md,
.-container-sm {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.-container-sm,
	.-container {
		max-width: 540px;
	}}

@media (min-width: 768px) {
	.-container-md,
	.-container-sm,
	.-container {
		max-width: 720px;
	}}

@media (min-width: 992px) {
	.-container-lg,
	.-container-md,
	.-container-sm,
	.-container {
		max-width: 960px;
	}}

@media (min-width: 1200px) {
	.-container-xl,
	.-container-lg,
	.-container-md,
	.-container-sm,
	.-container {
		max-width: 1140px;
	}}

@media (min-width: 1400px) {
	.-container-xxl,
	.-container-xl,
	.-container-lg,
	.-container-md,
	.-container-sm,
	.-container {
		max-width: 1320px;
	}}

.-row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.-row > * {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

.-col {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
}

.-row--cols-auto > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
}

.-row--cols-1 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

.-row--cols-2 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
}

.-row--cols-3 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.3333333333%;
}

.-row--cols-4 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 25%;
}

.-row--cols-5 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 20%;
}

.-row--cols-6 > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 16.6666666667%;
}

.-col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
}

.-col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 8.33333333%;
}

.-col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 16.66666667%;
}

.-col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 25%;
}

.-col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.33333333%;
}

.-col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 41.66666667%;
}

.-col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
}

.-col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 58.33333333%;
}

.-col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 66.66666667%;
}

.-col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 75%;
}

.-col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 83.33333333%;
}

.-col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 91.66666667%;
}

.-col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

.offset-1 {
	margin-left: 8.33333333%;
}

.offset-2 {
	margin-left: 16.66666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333333%;
}

.offset-5 {
	margin-left: 41.66666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333333%;
}

.offset-8 {
	margin-left: 66.66666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333333%;
}

.offset-11 {
	margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
	--bs-gutter-x: 0;
}

.g-0,
.gy-0 {
	--bs-gutter-y: 0;
}

.g-1,
.gx-1 {
	--bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
	--bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
	--bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
	--bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
	--bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
	--bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
	--bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
	--bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
	--bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
	--bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
	.-col-sm {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
	}

	.-row--cols-sm-auto > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-row--cols-sm-1 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.-row--cols-sm-2 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-row--cols-sm-3 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.-row--cols-sm-4 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-row--cols-sm-5 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%;
	}

	.-row--cols-sm-6 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.-col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.-col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.-col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.-col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.-col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.-col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.-col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.-col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.-col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.-col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.33333333%;
	}

	.offset-sm-2 {
		margin-left: 16.66666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33333333%;
	}

	.offset-sm-5 {
		margin-left: 41.66666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33333333%;
	}

	.offset-sm-8 {
		margin-left: 66.66666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33333333%;
	}

	.offset-sm-11 {
		margin-left: 91.66666667%;
	}

	.g-sm-0,
	.gx-sm-0 {
		--bs-gutter-x: 0;
	}

	.g-sm-0,
	.gy-sm-0 {
		--bs-gutter-y: 0;
	}

	.g-sm-1,
	.gx-sm-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-sm-1,
	.gy-sm-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-sm-2,
	.gx-sm-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-sm-2,
	.gy-sm-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-sm-3,
	.gx-sm-3 {
		--bs-gutter-x: 1rem;
	}

	.g-sm-3,
	.gy-sm-3 {
		--bs-gutter-y: 1rem;
	}

	.g-sm-4,
	.gx-sm-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-sm-4,
	.gy-sm-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-sm-5,
	.gx-sm-5 {
		--bs-gutter-x: 3rem;
	}

	.g-sm-5,
	.gy-sm-5 {
		--bs-gutter-y: 3rem;
	}}

@media (min-width: 768px) {
	.-col-md {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
	}

	.-row--cols-md-auto > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-row--cols-md-1 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.-row--cols-md-2 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-row--cols-md-3 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.-row--cols-md-4 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-row--cols-md-5 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%;
	}

	.-row--cols-md-6 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.-col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.-col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.-col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.-col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.-col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.-col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.-col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.-col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.-col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.-col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.33333333%;
	}

	.offset-md-2 {
		margin-left: 16.66666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33333333%;
	}

	.offset-md-5 {
		margin-left: 41.66666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33333333%;
	}

	.offset-md-8 {
		margin-left: 66.66666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33333333%;
	}

	.offset-md-11 {
		margin-left: 91.66666667%;
	}

	.g-md-0,
	.gx-md-0 {
		--bs-gutter-x: 0;
	}

	.g-md-0,
	.gy-md-0 {
		--bs-gutter-y: 0;
	}

	.g-md-1,
	.gx-md-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-md-1,
	.gy-md-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-md-2,
	.gx-md-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-md-2,
	.gy-md-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-md-3,
	.gx-md-3 {
		--bs-gutter-x: 1rem;
	}

	.g-md-3,
	.gy-md-3 {
		--bs-gutter-y: 1rem;
	}

	.g-md-4,
	.gx-md-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-md-4,
	.gy-md-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-md-5,
	.gx-md-5 {
		--bs-gutter-x: 3rem;
	}

	.g-md-5,
	.gy-md-5 {
		--bs-gutter-y: 3rem;
	}}

@media (min-width: 992px) {
	.-col-lg {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
	}

	.-row--cols-lg-auto > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-row--cols-lg-1 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.-row--cols-lg-2 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-row--cols-lg-3 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.-row--cols-lg-4 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-row--cols-lg-5 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%;
	}

	.-row--cols-lg-6 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.-col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.-col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.-col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.-col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.-col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.-col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.-col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.-col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.-col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.-col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.33333333%;
	}

	.offset-lg-2 {
		margin-left: 16.66666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33333333%;
	}

	.offset-lg-5 {
		margin-left: 41.66666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33333333%;
	}

	.offset-lg-8 {
		margin-left: 66.66666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33333333%;
	}

	.offset-lg-11 {
		margin-left: 91.66666667%;
	}

	.g-lg-0,
	.gx-lg-0 {
		--bs-gutter-x: 0;
	}

	.g-lg-0,
	.gy-lg-0 {
		--bs-gutter-y: 0;
	}

	.g-lg-1,
	.gx-lg-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-lg-1,
	.gy-lg-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-lg-2,
	.gx-lg-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-lg-2,
	.gy-lg-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-lg-3,
	.gx-lg-3 {
		--bs-gutter-x: 1rem;
	}

	.g-lg-3,
	.gy-lg-3 {
		--bs-gutter-y: 1rem;
	}

	.g-lg-4,
	.gx-lg-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-lg-4,
	.gy-lg-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-lg-5,
	.gx-lg-5 {
		--bs-gutter-x: 3rem;
	}

	.g-lg-5,
	.gy-lg-5 {
		--bs-gutter-y: 3rem;
	}}

@media (min-width: 1200px) {
	.-col-xl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
	}

	.-row--cols-xl-auto > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-row--cols-xl-1 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.-row--cols-xl-2 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-row--cols-xl-3 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.-row--cols-xl-4 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-row--cols-xl-5 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%;
	}

	.-row--cols-xl-6 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.-col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.-col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.-col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.-col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.-col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.-col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.-col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.-col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.-col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.-col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xl-11 {
		margin-left: 91.66666667%;
	}

	.g-xl-0,
	.gx-xl-0 {
		--bs-gutter-x: 0;
	}

	.g-xl-0,
	.gy-xl-0 {
		--bs-gutter-y: 0;
	}

	.g-xl-1,
	.gx-xl-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-xl-1,
	.gy-xl-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-xl-2,
	.gx-xl-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-xl-2,
	.gy-xl-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-xl-3,
	.gx-xl-3 {
		--bs-gutter-x: 1rem;
	}

	.g-xl-3,
	.gy-xl-3 {
		--bs-gutter-y: 1rem;
	}

	.g-xl-4,
	.gx-xl-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-xl-4,
	.gy-xl-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-xl-5,
	.gx-xl-5 {
		--bs-gutter-x: 3rem;
	}

	.g-xl-5,
	.gy-xl-5 {
		--bs-gutter-y: 3rem;
	}}

@media (min-width: 1400px) {
	.-col-xxl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
	}

	.-row--cols-xxl-auto > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-row--cols-xxl-1 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.-row--cols-xxl-2 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-row--cols-xxl-3 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.-row--cols-xxl-4 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-row--cols-xxl-5 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%;
	}

	.-row--cols-xxl-6 > * {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.-col-xxl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}

	.-col-xxl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.-col-xxl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.-col-xxl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.-col-xxl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.-col-xxl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.-col-xxl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.-col-xxl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.-col-xxl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.-col-xxl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.-col-xxl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.-col-xxl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.-col-xxl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xxl-0 {
		margin-left: 0;
	}

	.offset-xxl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xxl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xxl-3 {
		margin-left: 25%;
	}

	.offset-xxl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xxl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xxl-6 {
		margin-left: 50%;
	}

	.offset-xxl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xxl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xxl-9 {
		margin-left: 75%;
	}

	.offset-xxl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xxl-11 {
		margin-left: 91.66666667%;
	}

	.g-xxl-0,
	.gx-xxl-0 {
		--bs-gutter-x: 0;
	}

	.g-xxl-0,
	.gy-xxl-0 {
		--bs-gutter-y: 0;
	}

	.g-xxl-1,
	.gx-xxl-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-xxl-1,
	.gy-xxl-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-xxl-2,
	.gx-xxl-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-xxl-2,
	.gy-xxl-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-xxl-3,
	.gx-xxl-3 {
		--bs-gutter-x: 1rem;
	}

	.g-xxl-3,
	.gy-xxl-3 {
		--bs-gutter-y: 1rem;
	}

	.g-xxl-4,
	.gx-xxl-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-xxl-4,
	.gy-xxl-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-xxl-5,
	.gx-xxl-5 {
		--bs-gutter-x: 3rem;
	}

	.g-xxl-5,
	.gy-xxl-5 {
		--bs-gutter-y: 3rem;
	}}

.section {
	padding: 30px 0 20px;
}

@media (min-width: 1440px) {
	.section {
		padding: 20px 0 10px;
	}}

.t-a-c {
	text-align: center;
}

.m-b-par-lg p {
	margin-bottom: 30px;
}

.m-b-55 {
	margin-bottom: 55px;
}

.cm-btn {
	display: inline-block;
	height: 73px;
	padding: 0 25px;
	line-height: 73px;
	text-align: center;
	font-weight: 500;
	font-size: 19px;
	text-align: center;
	letter-spacing: 0.03em;
	color: #fff;
	background: #4ad3b0;
	border-radius: 5px;
}

.cm-btn:hover {
	background: #3ba58a;
	color: #fff;
	text-decoration:none !important;
}

@media (max-width: 768px) {
	.cm-btn {
		height: auto;
		padding: 10px 15px;
		line-height: 1;
		text-align: center;
		font-weight: 500;
		font-size: 16px;
		text-align: center;
		letter-spacing: 0.03em;
		color: #fff;
		background: #4ad3b0;
		border-radius: 5px;
	}}

.cm-btn.btn--light {
	color: #404040;
	background: #fff;
}

.cm-btn.btn--light:hover {
	background: #f2f2f2;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
}

.title {
	margin: 0 0 55px;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 800;
	font-size: 45px;
	line-height: 130%;
	letter-spacing: 0.03em;
	color: #404040;
	text-align: center;
	text-transform: none;
}

.cm-section__header {
	margin-bottom: 55px;
}

.cm-section__header .title {
	margin-bottom: 30px;
}

.cm-section__header p {
	margin-top: 0;
}

.cm-section__header a:hover {
	text-decoration:none !important;
	color:#4AD3B0 !important;	
}

.offers-list a:hover {
	text-decoration:none !important;
	color:#4AD3B0 !important;	
} 

.banner__txt a:hover {
	text-decoration:none !important;
	color:#4AD3B0 !important;	
} 

.title-styled {
	display: block;
	max-width: 400px;
	margin: 0 auto 55px;
	padding: 25px 52px;
	font-weight: 500;
	font-size: 19px;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.3;
	color: #fff;
	background: #4ad3b0;
	border-radius: 0px 0px 20px 20px;
}

.banner__title {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 800;
	font-size: 45px;
	line-height: 130%;
	letter-spacing: 0.03em;
	color: #404040;
}

@media (min-width: 769px) {
	.p-x-100 {
		padding-left: 100px;
		padding-right: 100px;
	}}

@media (max-width: 768px) {
	.p-x-100 {
		padding: 0;
	}}

.block-shadow {
	padding: 0 40px 40px;
	background: #fff;
	-webkit-box-shadow: 0px 8px 50px rgba(219, 219, 219, 0.33);
	box-shadow: 0px 8px 50px rgba(219, 219, 219, 0.33);
	border-radius: 20px;
}

@media (min-width: 1440px) {
	.block-shadow {
		padding: 0 100px 40px;
	}}

.list-styled {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 769px) {
	.list-styled {
		-webkit-columns: 2;
		-moz-columns: 2;
		columns: 2;
	}}

.list-styled li {
	display: block;
	position: relative;
	margin-bottom: 30px;
	padding-left: 15px;
}

.list-styled li:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: #4ad3b0;
	border-radius: 100%;
	top: 10px;
	left: 0px;
}

.card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 168px;
	height: 100%;
	padding: 30px;
	background: #def0ee;
	-webkit-box-shadow: 0px 0px 40px 4px rgba(243, 243, 243, 0.66);
	box-shadow: 0px 0px 40px 4px rgba(243, 243, 243, 0.66);
	border-radius: 20px;
	text-align: center;
	font-weight: 700;
}

.card p {
	margin: auto;
	font-size: 18px;
	line-height: 1.3;
}

.r-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.r-row > div {
	margin-bottom: 55px;
	padding: 0 30px;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 33%;
	flex: 1 0 33%;
}

.sub-title {
	margin-bottom: 55px;
	text-align: center;
}

.owl-carousel.owl-eq-height .owl-stage {
	height: 100%;
}

.owl-carousel.owl-eq-height .owl-item {
	height: 100%;
}

.owl-carousel.owl-eq-height .owl-item > div {
	height: 100%;
}

.owl-carousel.new .owl-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.owl-carousel.new .owl-nav .owl-prev,
.owl-carousel.new .owl-nav .owl-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 65px;
	height: 65px;
	border-radius: 100%;
	background: #fff;
	-webkit-box-shadow: -2px 2px 7px 3px rgba(192, 192, 192, 0.25);
	box-shadow: -2px 2px 7px 3px rgba(192, 192, 192, 0.25);
}

.owl-carousel.new .owl-nav .owl-prev svg,
.owl-carousel.new .owl-nav .owl-next svg {
	display: inline-block;
	margin: auto;
	fill: #898989;
}

.owl-carousel.owl-fancy {
	position: relative;
}

.owl-carousel.owl-fancy .owl-nav .owl-prev,
.owl-carousel.owl-fancy .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 65px;
	height: 65px;
	border-radius: 100%;
	background: #fff;
	-webkit-box-shadow: -2px 2px 7px 3px rgba(192, 192, 192, 0.25);
	box-shadow: -2px 2px 7px 3px rgba(192, 192, 192, 0.25);
}

.owl-carousel.owl-fancy .owl-nav .owl-prev svg,
.owl-carousel.owl-fancy .owl-nav .owl-next svg {
	display: inline-block;
	margin: auto;
	fill: #898989;
}

.owl-carousel.owl-fancy .owl-nav .owl-prev {
	left: 0;
}

.owl-carousel.owl-fancy .owl-nav .owl-next {
	right: 0;
}

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

.wpcf7-spinner {
	position: absolute !important;
	right: 0;
	z-index: 10;
}

.banner {
	position: relative;
}

.banner__container {
	margin: auto;
/* 	max-height: 710px; */
	background: no-repeat right bottom;
}

.banner__info {
	padding: 150px 0 120px;
}

.title.banner__title {
	text-align: left;
}

.banner__txt {
	font-size: 20px;
	line-height: 1.5;
	margin: 35px 0 47px;
/* 	max-width: 600px; */
}
.banner__info .banner__txt {
	max-width: 600px;
}

@media screen and (max-width: 1024px) {
	.banner__txt {
		max-width: 400px;
	}}

.treatment__block-shadow {
	margin-top: 55px;
}

.reasons__col {
	margin-bottom: 30px;
}

.factori .list-styled {
	-webkit-columns: 3;
	-moz-columns: 3;
	columns: 3;
}

.diagnostic__block-shadow {
	margin-top: 55px;
}

@media (min-width: 769px) {
/* 	.banner.clinic-banner .banner__info {
		width: 740px;
	} */
	.banner.clinic-banner .banner__info {
		width: 830px;
	}}



.banner.clinic-banner .banner__item {
	background-repeat: no-repeat;
	background-position: right bottom;
}

@media (min-width: 1920px) {
	.banner.clinic-banner .banner__item {
		background-size: contain;
	}}

.cm-about {
	text-align: center;
}

.cm-about-container {
	padding: 55px 160px;
	background: #deedf0;
}

.cm-sub-title {
	margin-top: 0;
	margin-bottom: 35px;
	font-weight: 700;
	font-size: 30px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.03em;
}

.cm-about__btn {
	margin-top: 35px;
}

.carousel-doctors__item {
	padding: 30px;
}

.carousel-doctors__item-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 40px 70px;
	-webkit-box-shadow: 50px -61px 32px rgba(217, 217, 217, 0.01), 28px -34px 27px rgba(217, 217, 217, 0.05), 13px -15px 20px rgba(217, 217, 217, 0.09), 3px -4px 11px rgba(217, 217, 217, 0.1), 0px 0px 0px rgba(217, 217, 217, 0.1);
	box-shadow: 50px -61px 32px rgba(217, 217, 217, 0.01), 28px -34px 27px rgba(217, 217, 217, 0.05), 13px -15px 20px rgba(217, 217, 217, 0.09), 3px -4px 11px rgba(217, 217, 217, 0.1), 0px 0px 0px rgba(217, 217, 217, 0.1);
	border-radius: 20px;
	background: no-repeat right bottom/contain;
	background-color: #deedf0;
}

@media (max-width: 768px) {
	.carousel-doctors__item-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}}

@media (min-width: 1440px) {
	.carousel-doctors__item-inner {
		/*     padding: 80px 144px; */
	}}

.cm-doctors__title {
	margin-bottom: 15px;
	font-weight: 800;
	font-size: 45px;
	line-height: 130%;
	letter-spacing: 0.03em;
}

.list-styled.no--columns {
	-webkit-columns: 1;
	-moz-columns: 1;
	columns: 1;
}

.carousel-doctors__item-info {
	padding-right: 20px;
	/*   width: 60%; */
}

@media (max-width: 768px) {
	.carousel-doctors__item-info {
		width: 100%;
		padding: 20px;
	}}

.carousel-doctors__img {
	width: 40%;
}

@media (max-width: 768px) {
	.carousel-doctors__img {
		width: 100%;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}}

.carousel-doctors__img img {
	display: block;
	/*  width: 300px !important; */
	height: auto;
	margin: auto;
}

@media (max-width: 768px) {
	.carousel-doctors__img img {
		width: 100% !important;
		border-radius: 17px;
	}}

.cm-doctor__speciality {
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0.03em;
}

.carousel-doctors__item-list li {
	margin-bottom: 5px;
	font-size: 20px;
}

.carousel-doctors__item-about-doctors {
	margin-top: 10px;
	font-weight: 500;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0.03em;
}

.carousel-doctors__item-directions {
	font-weight: 500;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0.03em;
}

@media (min-width: 769px) {
	.show-on-mobile {
		display: none;
	}}

@media (min-width: 769px) and (max-width: 768px) {
	.carousel-doctors__item-inner {
		background: none !important;
	}}

.cm-methods-container {
	padding: 0 44px;
}

.cm-methods__card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding: 30px;
	background: #deedf0;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.11);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.11);
	border-radius: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.cm-methods__card:hover {
	-webkit-box-shadow: 0px 8px 27px rgba(121, 121, 121, 0.11);
	box-shadow: 0px 8px 27px rgba(121, 121, 121, 0.11);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);	
	cursor:pointer;
}

.cm-methods__card img {
	width: 70px;
	height: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 15px;
}

.cm-methods__card p {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.cm-methods__row {
	margin: 0 -44px;
}

.cm-methods__row .-col {
	padding: 0 22px;
}

.cm-methods__col {
	margin-bottom: 55px;
}

.cm-clinic-adv-container {
	padding: 0 50px;
}

.cm-clinic-adv__row {
	margin: 0 -50px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cm-clinic-adv__col {
	margin-bottom: 20px;
	padding: 0 25px;
}

.cm-clinic-adv__card {
	height: 100%;
	text-align: center;
}

.cm-clinic-adv__card-title {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.03em;
}

.cm-clinic-adv__card p {
	margin: 0;
	font-weight: 500;
	font-size: 15px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.03em;
}

.cm-clinic-adv__card-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100px;
	height: 100px;
	margin-bottom: 15px;
	margin: auto;
	border-radius: 100%;
	overflow: hidden;
	background: #e1f7f0;
}

.cm-clinic-adv__card-img img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 40px;
	height: auto;
	margin: auto;
}

.carousel-gallery__item {
	padding: 0 45px;
}

@media (min-width: 1440px) {
	.carousel-gallery__item {
		padding: 0 115px;
	}}

.carousel-gallery__item-inner {
	position: relative;
	height: 600px;
	border-radius: 20px;
	overflow: hidden;
	background: no-repeat center/cover;
}

@media (min-width: 1440px) {
	.carousel-gallery__item-inner {
		height: 800px;
	}}

.carousel-gallery__item-inner a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.carousel-licenses__item {
	padding: 10px 30px;
}

.carousel-licenses__item-inner {
	padding: 20px;
	background: #fff;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.17);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.17);
	border-radius: 5px;
}

.carousel-licenses__item-inner img {
	transition: all .3s ease;
}

.carousel-licenses__item-inner img:hover {
	transform: scale(1.2);
}

@media (min-width: 769px) {
	.carousel-licenses__item-inner {
		padding: 45px 80px;
	}}

.container.actions__container {
	margin: 0 auto;
}

.actions__item {
	padding: 30px;
	font-weight: 800;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.03em;
}

.actions__item > div > div {
	width: 50%;
}

.actions__item-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 35px;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
	height: 270px;
	overflow: hidden;
}

.actions__img {
	width: 40%;
	padding-right: 15px;
}

.actions__img img {
	display: block;
	width: 100%;
}

.actions__txt {
	width: 60%;
}

.adv__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 197px;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px -25px 10px rgba(191, 191, 191, 0.01), 0px -14px 8px rgba(191, 191, 191, 0.05), 0px -6px 6px rgba(191, 191, 191, 0.09), 0px -2px 3px rgba(191, 191, 191, 0.1), 0px 0px 0px rgba(191, 191, 191, 0.1);
	box-shadow: 0px -25px 10px rgba(191, 191, 191, 0.01), 0px -14px 8px rgba(191, 191, 191, 0.05), 0px -6px 6px rgba(191, 191, 191, 0.09), 0px -2px 3px rgba(191, 191, 191, 0.1), 0px 0px 0px rgba(191, 191, 191, 0.1);
	border-radius: 20px;
}

.adv__img img {
	margin: auto;
}

.adv__txt {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.03em;
	text-align: center;
}

.order__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 40px 40px 30px;
	background: #deedf0;
	border-radius: 20px;
}

@media (min-width: 1440px) {
	.order__inner {
		padding: 80px 186px 70px;
	}}

.title.order__title {
	text-align: left;
	margin: 0;
	font-style: normal;
	font-weight: 800;
	font-size: 45px;
	line-height: 130%;
	letter-spacing: 0;
}

.order__agree {
	font-size: 10px;
	line-height: 130%;
	text-align: center;
}

.order__agree span {
	color: #a5a5a5;
}

.order__btn-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.order__btn {
	margin: 20px 0 10px;
}

.order__col-1 {
	width: 420px;
}

.order__col-2 {
	position: relative;
	padding-top: 30px;
}

.order__contacts {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.-contacts .-contacts__work {
	position: relative;
	padding-left: 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.03em;
}

.-contacts .-contacts__work span {
	font-weight: 500;
}

.-contacts__tel {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.3;
	letter-spacing: 0.03em;
	color: #404040;
}

.-social-link:hover {
	text-decoration: none;
}

.order__social {
	font-weight: 400;
	font-size: 10px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.03em;
}

.order__social p span {
	font-weight: 500;
}

.order__social a svg {
	text-decoration: none;
}

.-contacts__work:before {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	top: 10px;
	left: 0;
	background: linear-gradient(91.38deg, #6ad676 0.23%, #63dc71 135.14%);
}

.-contacts__tel-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.order__col-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.-social-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.-social-block a {
	margin-right: 10px;
}

.-social-block a svg {
	width: 25px;
	fill: #4ad3b0;
}

.-social-block a:last-child {
	margin-right: 0;
}

.price__nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 15px;
}

@media (min-width: 1440px) {
	.price__nav-links {
		margin-bottom: 55px;
	}}

.price__nav-links span:not(:last-child) {
	margin-right: 15px;
}

.price__nav-links span {
	padding: 5px 10px;
	display: inline-block;
	font-weight: 500;
	font-size: 20px;
	line-height: 82.52%;
	text-align: center;
	letter-spacing: 0.03em;
	color: #818181;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	border: 1px solid rgba(0, 0, 0, 0);
}

@media (min-width: 1440px) {
	.price__nav-links span {
		padding: 15px 20px;
		font-size: 25px;
	}}

.price__nav-links span:hover {
	border: 1px solid #4ad3b0;
	border-radius: 5px;
	color: #404040;
}

.price__nav-links span.tab-link-active {
	border: 1px solid #4ad3b0;
	border-radius: 5px;
	color: #404040;
}

.price__content {
	padding: 0 80px 40px;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
}

.price__content-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 -80px;
	padding: 55px 80px;
	background: #deedf0;
}

.price__content-header div {
	font-weight: 500;
	font-size: 20px;
}

.price__content-header div:last-child {
	width: 250px;
}

.price__item-title {
	margin-top: 50px;
	margin-bottom: 35px;
	font-weight: 700;
	font-size: 25px;
	cursor: pointer;
}

.price__item-title svg {
	display: inline-block;
	margin-right: 15px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.price__item-title:last-child {
	margin-bottom: 0;
}

.price__data-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 35px;
	padding-left: 37px;
}

.price__data-item > div:last-child {
	width: 270px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.price__data-item > div:last-child span:first-child {
	font-weight: 700;
	font-size: 20px;
}

.price__data-item > div:last-child span:last-child {
	font-weight: 400;
	font-size: 15px;
	line-height: 130%;
	letter-spacing: 0.03em;
	color: #4ad3b0;
	border-bottom: 1px dashed #4ad3b0;
	cursor: pointer;
}

.price__data-item:last-child {
	margin-bottom: 0;
}

.cm-acc-title-active svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.js-acc-content {
	display: none;
}

.js-accordion-title {
	position: relative;
	top: 0;
}

@media (max-width: 1024px) {
	.price-resp {
		overflow-x: auto;
	}

	.price-resp > div {
		width: 1000px;
	}}

.reviews-carousel .owl-stage-outer {
	background: #fff;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
}

.reviews__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.reviews__row > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 340px;
	padding: 33px 15px;
}

.reviews__row > div img {
	width: 115px;
	margin-right: 13px;
	margin-bottom: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.reviews-carousel__item {
	padding: 55px 60px;
}

.reviews-carousel__item p {
	font-size: 20px;
	line-height: 1.3;
}

@media screen and (max-width: 576px) {
	.reviews-carousel__item p {
		font-size: 14px !important;
	}

	.reviews-carousel .owl-item {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}}

.raiting {
	margin-right: 5px;
	font-weight: 700;
	font-size: 45px;
}

.stars-block svg {
	width: 11px;
	height: 11px;
	fill: orange;
}

.num-rev {
	font-weight: 400;
	font-size: 10px;
	color: #a9a9a9;
	line-height: 1;
}

.reviews__row {
	margin-bottom: 30px;
}

.reviews__item {
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.reviews-carousel .owl-item {
	padding: 30px;
}

.reviews-carousel__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.raiting-stars svg {
	width: 24px;
	height: 24px;
	fill: #4ad3b0;
}

.reviews-carousel__avatar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.reviews-carousel__avatar img {
	width: 80px !important;
	height: 80px !important;
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
	border-radius: 100%;
	overflow: hidden;
}

.reviews-carousel__avatar span {
	margin-left: 10px;
	font-weight: 500;
	font-size: 20px;
}

.reviews-carousel .owl-stage-outer {
	background: #fff;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
}

.reviews__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.reviews__row > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 340px;
	padding: 33px 15px;
}

.reviews__row > div img {
	width: 115px;
	margin-right: 13px;
	margin-bottom: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.reviews-carousel__item {
	padding: 55px 60px;
}

.reviews-carousel__item p {
	font-size: 20px;
	line-height: 1.3;
}

.raiting {
	margin-right: 5px;
	font-weight: 700;
	font-size: 45px;
}

.stars-block svg {
	width: 11px;
	height: 11px;
	fill: orange;
}

.num-rev {
	font-weight: 400;
	font-size: 10px;
	color: #a9a9a9;
	line-height: 1;
}

.reviews__row {
	margin-bottom: 30px;
}

.reviews__item {
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.reviews-carousel .owl-item {
	padding: 30px;
}

.reviews-carousel__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.raiting-stars svg {
	width: 24px;
	height: 24px;
	fill: #4ad3b0;
}

.reviews-carousel__avatar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.reviews-carousel__avatar img {
	width: 80px !important;
	height: 80px !important;
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
	border-radius: 100%;
	overflow: hidden;
}

.reviews-carousel__avatar span {
	margin-left: 10px;
	font-weight: 500;
	font-size: 20px;
}

.reviews-carousel .owl-stage-outer {
	background: #fff;
	-webkit-box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	box-shadow: 0px 8px 27px rgba(189, 189, 189, 0.25);
	border-radius: 20px;
}

.reviews__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.reviews__row > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 340px;
	padding: 33px 15px;
}

.reviews__row > div img {
	width: 115px;
	margin-right: 13px;
	margin-bottom: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.reviews-carousel__item {
	padding: 55px 60px;
}

.reviews-carousel__item p {
	font-size: 20px;
	line-height: 1.3;
}

.raiting {
	margin-right: 5px;
	font-weight: 700;
	font-size: 45px;
}

.stars-block svg {
	width: 11px;
	height: 11px;
	fill: orange;
}

.num-rev {
	font-weight: 400;
	font-size: 10px;
	color: #a9a9a9;
	line-height: 1;
}

.reviews__row {
	margin-bottom: 30px;
}

.reviews__item {
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.reviews-carousel .owl-item {
	padding: 30px;
}

.reviews-carousel__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.raiting-stars svg {
	width: 24px;
	height: 24px;
	fill: #4ad3b0;
}

.reviews-carousel__avatar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.reviews-carousel__avatar img {
	width: 80px !important;
	height: 80px !important;
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
	border-radius: 100%;
	overflow: hidden;
}

.reviews-carousel__avatar span {
	margin-left: 10px;
	font-weight: 500;
	font-size: 20px;
}

@media (max-width: 1366px) {
	.price__content {
		padding: 0 40px 20px;
	}

	.price__content-header {
		margin: 0 -40px;
		padding: 30px;
	}}

@media (max-width: 768px) {
	.section {
		padding: 20px 0;
	}

	.title {
		font-size: 30px;
		margin-bottom: 30px;
		line-height: 1.3;
	}

	.title.banner__title {
		text-align: center;
	}

	.banner__txt {
		margin: 15px 0 17px;
	}

	.banner__container {
		min-height: auto;
		background-image: none !important;
	}

	.banner__info {
		padding: 40px 0;
		text-align: center;
	}

	.banner__txt br {
		display: none;
	}

	.title-styled {
		margin-bottom: 25px;
		padding: 10px;
		font-weight: 500;
		font-size: 12px;
	}

	.list-styled li {
		margin-bottom: 10px;
	}

	.r-row > div {
		margin-bottom: 15px;
		padding: 0 10px;
	}

	.card {
		padding: 15px;
	}

	.actions__item-inner {
		padding: 10px;
	}

	.owl-carousel.new .owl-nav .owl-prev,
	.owl-carousel.new .owl-nav .owl-next {
		width: 25px;
		height: 25px;
	}

	.adv .col-12 {
		margin-bottom: 60px;
	}

	.adv__img {
		width: 150px;
		margin: 0 auto 20px;
		height: auto;
	}

	.order__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.order__col-2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.title.order__title {
		text-align: center;
		font-size: 30px;
	}

	.order__col-1 {
		width: auto;
	}

	.reviews__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.reviews__item {
		margin-bottom: 20px;
	}

	.block-shadow {
		padding: 0 15px 20px;
	}

	.factori .list-styled {
		-webkit-columns: 2;
		-moz-columns: 2;
		columns: 2;
	}

	.block-shadow.treatment__block-shadow {
		padding-left: 15px;
		padding-right: 15px;
	}

	.cm-sub-title {
		margin-top: 0;
		margin-bottom: 25px;
		font-size: 25px;
	}

	.carousel-doctors__item-inner {
		padding: 20px;
		background-image: none !important;
	}

	.cm-doctors__title {
		font-size: 30px;
		text-align: center;
	}

	.carousel-doctors__item {
		padding: 0px;
	}

	.carousel-doctors__item-info {
		max-width: 100%;
	}

	.cm-methods__card {
		padding: 10px;
	}

	.cm-methods__card p {
		font-weight: 500;
		font-size: 18px;
	}

	.cm-methods__col {
		margin-bottom: 25px;
	}

	.banner.clinic-banner .banner__item {
		background-image: none !important;
	}

	.cm-about-container {
		padding: 25px 15px;
		background: #deedf0;
	}

	.price__content-header {
		margin: 0 -15px;
		padding: 15px;
	}

	.price__content {
		padding: 0 15px;
	}

	.price__data-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.price__item-title {
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.price__data-item {
		padding-left: 0;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px solid #000;
	}

	.price__content-header {
		display: none;
	}

	.price__data-item > div:first-child {
		margin-bottom: 10px;
	}

	.price__nav-links {
		margin-bottom: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.price__nav-links span {
		font-size: 16px;
	}

	.price__item-title {
		display: -webkit-box;
		display: -ms-flexbox;
		/* display: flex; */
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		/* -webkit-box-align: center; */
		-ms-flex-align: center;
		align-items: center;
		font-size: 16px;
		font-weight: 500;
	}

	.price__item-title svg {
		margin-right: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.price__nav-links span:not(:last-child) {
		margin-right: 0px;
	}

	.carousel-gallery__item-inner {
		height: 400px;
	}

	.raiting-stars svg {
		width: 14px;
		height: 14px;
	}

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

@media (max-width: 600px) {
	.reviews-carousel__header {
		margin-bottom: 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.reviews-carousel__avatar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.factori .list-styled {
		-webkit-columns: 1;
		-moz-columns: 1;
		columns: 1;
	}

	.r-row > div {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.actions__item-inner {
		height: auto;
		text-align: center;
	}

	.actions__item-inner .actions__txt {
		width: 100%;
	}

	.actions__item-inner .actions__img {
		display: none;
	}

	.title {
		font-size: 20px;
		margin-bottom: 15px;
		line-height: 1.1;
	}

	.cm-doctors__title {
		font-size: 20px;
		line-height: 1.1;
	}

	.cm-doctor__speciality,
	.carousel-doctors__item-about-doctors {
		font-size: 16px;
	}

	.cm-methods__card img {
		width: 40px;
		margin-right: 10px;
	}

	.reviews__row > div {
		width: 100%;
		padding: 5px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.reviews-carousel__item {
		padding: 10px;
	}

	.title.order__title {
		font-size: 20px;
	}

	.carousel-gallery__item {
		padding: 0 5px;
	}}

.cm-form {
	max-width: 500px;
	padding: 40px 20px;
	background: #fff;
}

.cm-form__title {
	margin-top: 0;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}

.cm-form__sub-title {
	text-align: center;
}


.cm-form select {
	width: 100%;
	line-height: 40px;
	padding: 10px 10px;
	border: none;
	border-bottom: 1px solid #4ad3b0;
}

.cm-form__agree {
	display: block;
	text-align: center;
}

.cm-btn.cm-form__submit {
	margin-top: 15px;
	display: inline-block;
	width: 200px;
	background: #4ad3b0;
	color: #fff;
	font-weight: bold;
}

.cm-form__submit-wrap {
	position: relative;
	text-align: center;
}

.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	text-align: center;
}

.cm-header-button-drop {
	right: 0;
	left: auto;
	width: 300px;
	padding: 0 10px;
	background: #fff;
	margin-top: 15px;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border-radius: 5px;
}

.carousel-doctors__item-info.cm-doctors__block p {
	font-size: 20px;
}

/* RBRU change styles*/
.header-phones {
	display: flex;
	flex-direction: column;
}

.header-phones__item {
	display: flex;
	gap: 5px;
	color: #000000;
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
}

.header-phones a {
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}

.header-social__custom {
	position: relative;
	padding: 8px 7px 0;
}
.header-social__custom:hover {
	cursor: pointer;
	z-index: 1;
}
.header-social__custom:hover svg path {
	fill: #fff;
}
.header-social__custom:hover::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	background-color: #226983;
	z-index: -1;
}
.rs-header__container {
	padding-right: 0;
}
@media all and (max-width: 768px) {
	.rs-header__container {
		padding-right: 15px;
	}}
.header-social__baner {
	display: none;
	content: "";
	position: absolute;
	bottom: -172px;
	right: 0;
	height: 128px;
	width: 410px;
	background-color: #226983;
	padding: 0 33px 0 45px;
}
@media all and (max-width: 1300px) {
	.header-social__baner {
		bottom: -178px;
	}}

@media all and (max-width: 1170px) {
	.header-social__baner {
		bottom: -161px;
	}}

@media all and (max-width: 430px) {
	.header-social__baner {
		width: 390px;
	}}

@media all and (max-width: 390px) {
	.header-social__baner {
		width: 370px;
		padding: 0 23px 0 35px;
	}}

@media all and (max-width: 360px) {
	.header-social__baner {
		width: 320px;
		padding: 0 23px 0 23px;
	}}

.title-rs-about {
	margin-left: 300px;
}

.header-social__custom:hover .header-social__baner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: default;
}
.header-social__groups {
	display: flex;
	gap: 44px;
}
.header-social__baner {
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
}
.header-social__baner p {
	font-size: 15px;
}
.header-social__groups a {
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	text-decoration: underline;
	margin-right: 44px;
}
.header-social__baner .header-social__groups a:hover {
	cursor: pointer;
}
.rs-header-wrapper__big {
	width: 70%;
	display: flex;
	align-items: center;
	flex-direction: row;
}
.rs-header-wrapper__small {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: row;
}

@media all and (max-width: 768px) {
	.rs-header-wrapper__big {
		width: 100%;
	}

	.rs-header-wrapper__small {
		width: 100%;
	}}

/*# sourceMappingURL=new-style.css.map */

.readmore {
	text-align: center;
}

.readmore a {
	display: inline-flex;
	margin-top: 30px;
	font-weight: 500;
	text-decoration:none;
}

.readmore a:hover {
	text-decoration:none;
}

.content-cont {
	min-height: 266px;
	background-color: #007691;
	color: white;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 66px;
}
.content-cont h1 {
	text-transform: none;
	font-weight: 500;
}
.nav-cont {
	min-height: 35px;
	overflow-x: scroll;
	margin-bottom: 39px;
}
.nav-cont ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	min-width: 1127px;
}
.nav-cont ul li {
	margin-right: 4px;
	width: 35px;
	height: 35px;
	color: #007691;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	border: 1px solid rgb(204, 204, 204);
	cursor: pointer;
	font-weight: 500;
}
.li__active {
	background-color: #4ad3b0 !important;
	color: white !important;
	transition: 0.1s;
}
.nav-cont ul li:last-child {
	margin-right: 0px;
}

.nav-cont ul li a:hover {
	text-decoration:none;
}

.nav-cont ul li a:focus {
	text-decoration:none !important;
}

.search-bar {
	min-height: 62px;
	border: 1px solid rgb(204, 204, 204);
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1140px;
	margin: 0px auto 66px auto;
}
.search-bar__cont {
	padding: 0px 20px;
}
.search-bar__search {
	width: 100%;
}
.search-bar__buttton {
	height: 62px;
	background-color: #4ad3b0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 14%;
	color: white;
	font-weight: 700;
}
.search-bar__search-cont {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 19px 0px 19px 23px;
}
.search-bar__search__icon {
	margin: 0px 8px 0px 0px;
}
.article-container__content {
	margin: 0px auto 0px auto;
	max-width: 1140px;
}
.article-container__content__list__item {
	max-width: 854px;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 30px;
}
.article-container__content__list__item:last-child {
	margin-bottom: 49px;
}
.article-container__content__list__item a:hover {
	color: #4ad3b0;
	transition: 0.1s;
	text-decoration: none;
}
.article-container__content__list__item a {
	font-size: 20px;
	cursor: pointer;
	text-transform: none;
	text-decoration: none;
	font-weight: 700;
	color: black;
}
.article-container__content__list__item p {
	font-size: 16px;
	height: 72px;
	margin: 0px;
}
.list-container__content {
	max-width: 1140px;
	margin: 0px auto 104px auto;
	display: flex;
	flex-direction: row;
}
.list-container__arrow-left img {
	margin-right: 25px;
	margin-bottom: 0px;
}
.list-container__arrow-right img {
	transform: rotate(180deg);
	margin: 0px;
}
.list-container__content__item {
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 25px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.1s;
}
.list-container__content__item__active {
	border-radius: 100px;
	background-color: #007691;
	color: white;
}
.list-container__content__contain {
	display: flex;
	flex-direction: row;
	margin: 0px;
}
@media (max-width: 992px) {
	.search-bar__search__icon {
		display: none;
	}}
@media (max-width: 768px) {
	.content-cont h1 {
		text-align: center;
		font-size: 28px;
	}
	.nav-cont::-webkit-scrollbar {
		height: 0;
	}
	.article-container {
		padding: 0px 25px;
	}
	.list-container__content {
		justify-content: center;
	}}
.wp-pagenavi {
	display: flex;
}
.wp-pagenavi > * {
	display: block;
	color: var(--text, #222631);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	line-height: 35px;
	font-style: normal;
	font-weight: 600;
	width: 35px;
	height: 35px;
}
.wp-pagenavi .current {
	background: #007691;
	color: #fff;
	border-radius: 50%;
}
.action-attention {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 3%;
}

@media (max-width: 768px) {
	.mobile_about-button {
		display: flex;
		width: 100%;
		height: 34px;
		align-items: center;
		justify-content: center;
		background-color: #007691;
		border-radius: 20px;
		color: #fff;
		margin: auto;
	}
	.mobile_about-button:hover {
		color: #fff;
	}
	.carousel-doctors__item-directions {
		display: none;
	}
	.carousel-doctors__item-list {
		display: none;
	}
	.carousel-doctors__item-about-doctors {
		display: none;
	}
	.carousel-doctors__item-info.cm-doctors__block p {
		text-align: center;
	}

	.search-bar__buttton {
		width: 30%;
	}}

.rbru-news-tabsContainer {
	display: flex;
}

.rbru-news-tabItem {
	width: 50%;
	padding: 10px;
	text-align: center;
	color: #000;
	font-size: 20px;
	border-radius: 10px;
}
.rbru-news-tabItem:hover {
	cursor: pointer;
}
.rbru-news-tabItem.active {
	background-color: #007691;
	color: #fff;
}
@media (max-width: 992px) {
	.rbru-news-tabsContainer {
		display: flex;
		flex-direction: column;
	}
	.rbru-news-tabItem {
		width: 100%;
		margin-bottom: 10px;
		font-size: 18px;
	}}

.rbrutab-rehab {
	display: none;
}
.rbrutab-rehab.active {
	display: block;
}
.rbrutab-pediatrics {
	display: none;
}
.rbrutab-pediatrics.active {
	display: block;
}
.tab-body__text.section-text span {
	color: #337ab7;
}
.tambov-container p {
	text-align: center;
	margin-bottom: 37px;
}
.tambov-map {
	padding-bottom: 0;
}

.clinica-banner{
	display: flex;
}

@media (max-width: 780px) {
	.clinica-banner {
		flex-direction: column;
    	gap: 10px;
	}}

@media (max-width: 330px) {
	.clinica-banner-button a {
    	font-size: 20px !important;
	}
	
	.clinica-banner-button {
		padding: 12px 21px !important;
	}}
.clinica-banner-button{
	background-color: white; 
	border: 1px solid  #D0D0D0; 
	border-radius: 10px; 
	padding: 17px 21px; 
	min-width: 266px; 
	min-height: 87px; 
	text-align: center;
	margin-right: 9px;
}



.clinica-banner-button a {
	font-size: 24px; 
	font-weight: 600; 
	line-height: 29px; 
	margin-bottom: 5px;
}

.clinica-banner-button p {
	font-size: 15px; 
	font-weight: 400; 
	line-height: 18px; 
	color: #424242;
}

.blue{
	min-height: 29px;
	color: #609ECA; 
}

.whatsapp{
	color: black;
}

.whatsapp::before{
	content: '';
	background-image: url("/wp-content/themes/wp19/img/whatsapp-button-fill.svg");
	background-size: contain;
	margin-right: 5px;
	display: inline-block;
	position: relative;
	top: 5px;
	width: 25px;
	height: 25px;
}

.services__content a:hover {
	text-decoration:none;
	color:#4AD3B0 !important;
}

.price__information-item a {
  text-decoration: none;
  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)),
  linear-gradient(#4ad3b0, #4ad3b0);
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size .2s ease;
  padding-bottom:3px;	
}

.price__information-item a:hover {
  background-size: 0 2px, 100% 2px;
  text-decoration:none;
}

.containerPrice{
    width: 100%;
    max-width: 1355px;
    padding: 0 25px;
    margin: 0 auto;
}
.price{
    margin-top: 40px;
    color:#404040;
    
}
.price__inner{
    display: flex;
}
.price__information{
    width: 50%;
    padding: 40px 53px;
    filter:drop-shadow(0px 8px 27px rgba(0.7411764860153198,0.7411764860153198,0.7411764860153198,0.25));
    border-radius:20px;
    background: #fff;
    margin-right: 20px;
}
.price__title{
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
	text-align: left;
}
.price__img{
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.price__information-title{
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 32px;
}
.price__information-title p {
	font-size: 22px;
    font-weight: 600;
    line-height: 135%;
}
.price__information-listBlock{
    margin-bottom: 30px;
}
.price__information-list{
    font-family: "Montserrat", sans-serif;
    list-style: none;
}
.price__information-city{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 23px;
    padding-left: 33px;
    position: relative;
    font-family: "Montserrat", sans-serif;
}
.price__information-city::before{
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: url('https://clinicbc.ru/wp-content/uploads/2024/03/Frame.png');
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -6px;
}
.price__information-item{
    margin-bottom: 15px;
}
.price__information-item:last-child{
    margin-bottom: 0;
}
.price__information-item__link{
    text-decoration: none;
    color: #609ECA;
    font-size: 15px;
}
.price__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width:800px){
    .price__inner{
        flex-direction:column;
    }
    .price__img{
        width:100%;
        order:0;
        margin-bottom:20px;
    }
    .price__information{
        width:100%;
        order:1;
    }
    .price__information-title{
        font-size:16px;
    }
    .price__information-city{
        font-size:16px;
    }
    .price__information-item__link{
        font-size:14px;
    }
    .price__information{
        padding:29px 20px;
    }
    .price__title{
        font-size: 20px;
        margin-bottom: 20px;
    }}


.rightServicesZapic{
	box-sizing: border-box;
	max-width:330px;
	margin-left:27px;
	width: 100%;
	background: #609ECA;
	border-radius: 5px;
	padding: 23px 10px;
	display: flex;
	align-items: center;
	margin-top: 30px;
	height: 96px;
}
.rightServicesZapic__imgBlock{
	width:60px;
	height:60px;
	flex-shrink:0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #60BFCA;
	border-radius: 3px;
	margin-left: -40px;
	margin-right: 16px;
}
.rightServicesZapic__imgBlock img{
	margin: 0;
}
.rightServicesZapic__title{
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}
.rightServicesZapic__top{
	align-self: flex-start;
}
.rightServicesZapic .order-description__button{
	max-width:170px;
	margin: 0 auto;
	color:#fff;
}
.rightServicesZapic .rs-other-btn:hover::before {
width: calc(100% - 55px);
left: 0px;
right: auto;
}
@media(max-width: 1170px){
.rightServicesZapic{
max-width:283px;
padding: 20px 10px;
margin-left:15px;
}
.rightServicesZapic__imgBlock{
width:46px;
height:50px;
margin-left:-25px;
}
.rightServicesZapic__title{
margin-bottom:0;
}}

.quote {
	position: relative;
	margin-top: 96px;
  }
  .quote .contact__button{
	width: 100%;
	  max-width: 196px;
	  height: 56px;
  }
  .quote__inner {
	display: flex;
	gap: 50px;
	align-items: flex-end;
  }
  .quote__img {
	position: relative;
  }
  .quote__img img {
	max-width: 100%;
	margin-bottom: 0;
  }
  .quote__doc {
	position: absolute;
	right: 0;
	bottom: -58px;
	z-index: 2;
  }
  .quote__quoteBlock {
	padding: 50px 40px;
	max-width: 780px;
	box-shadow: 0px 8px 27px 0px rgba(189, 189, 189, 0.25);
	margin-left: -170px;
	position: relative;
	z-index: 1;
	background: #fff;
	margin-bottom: 43px;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 29px;
	color: #222631;
  }
  .quote__quoteBlock-img {
	margin-bottom: 20px;
  }
  .quote__doctorName {
	color: #222631;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	font-family: "Montserrat", sans-serif;
  }
  .quote__doctorPosition {
	max-width: 422px;
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
	color: #222631;
	margin-bottom: 85px;
	font-family: "Montserrat", sans-serif;
  }
  .quote__btn {
	padding: 20px;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #4AD3B0;
	display: inline-block;
	text-decoration: none;
  }
  .quote__bgImg {
	position: absolute;
	right: 0;
	bottom: 0;
  }
  
  @media (max-width: 1560px) {
	.quote__bgImg {
	  display: none;
	}}
  @media (max-width: 1375px) {
	.quote__quoteBlock {
	  font-size: 16px;
	  line-height: 23px;
	  padding: 30px 20px;
	}
	.quote__doctorPosition {
	  margin-bottom: 35px;
	}
	.quote__doc {
	  width: 420px;
	}}
  @media (max-width: 1190px) {
	.quote__inner {
	  flex-direction: column;
	  align-items: center;
	  gap: 0;
	}
	.quote__img {
	  width: 100%;
	  padding: 0 15px;
	}
	.quote__img img {
	  width: 100%;
	  -o-object-fit: cover;
		 object-fit: cover;
	  max-height: 550px;
	}
	.quote__info {
	  margin: 0;
	  width: 100%;
	  padding: 0 15px;
	}
	.quote__quoteBlock {
	  margin: 0 auto 15px auto;
	  max-width: 100%;
	}
	img.quote__doc {
	  right: 50%;
	  transform: translateX(50%);
	  width: 600px;
	  bottom: -30px;
	}
	.quote__doctorName {
	  font-size: 14px;
	}
	.quote__doctorPosition {
	  font-size: 12px;
	}}
  @media (max-width: 700px) {
	img.quote__doc {
	  width: 80%;
	}}


.review {
  overflow-x: hidden;
  min-height: 600px;
  padding: 20px 0;
  position: relative;
}
.review__inner {
  max-width: 2000px;
  display: flex;
  gap: 50px;
  flex-direction: row-reverse;
  align-items: center;
}
.review__img {
  position: relative;
}
.review__img img {
  max-width: 100%;
}

.button__container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 310px;
}
.button__container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #007691;
}


.swiper-button-prev.my-swiper-button-prev {
  margin-right: 0;

}

.swiper-pagination-current{
  font-weight:700;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;

}
.swiper-button-next.my-swiper-button-next {
  margin-left: 0;
}

.button__container{
  position: relative;
}
.button__container .swiper-pagination.my-swiper-pagination{
	position:absolute;
}
.review__title{
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  top: 0;
  z-index: 3;
}

.button__container .swiper-button-next:after, .button__container .swiper-rtl .swiper-button-prev:after{
  content: '' !important;
}
.button__container .swiper-button-prev:after, .button__container .swiper-rtl .swiper-button-prev:after{
  content: '' !important;
}
.button__container .swiper-button-next{
  background: url('/wp-content/uploads/2024/09/next-arrow.png ') !important;
  background-size: cover !important;
  width: 40px !important;
  height: 40px !important;
}
.button__container .swiper-button-prev{
  background: url("/wp-content/uploads/2024/09/prev-arrow.png") !important;
  background-size: cover !important;
  width: 40px !important;
  height: 40px !important;
}

.review__reviewBlock {
  padding: 50px 40px;
  max-width: 780px;
  box-shadow: 0px 8px 27px 0px rgba(189, 189, 189, 0.25);
  margin-right: -200px;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 43px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #222631;
}
.review__reviewBlock-img {
  margin: 20px 0;
}
.review__doctorName {
  color: #222631;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.review__doctorPosition {
  max-width: 422px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #222631;
  margin-bottom: 85px;
  font-family: "Montserrat", sans-serif;
}
.review__btn {
  padding: 20px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #4AD3B0;
  display: inline-block;
  text-decoration: none;
}
.review__bgImg {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1400px) {
  .review__bgImg {
    display: none;
  }}
@media (max-width: 1375px) {
  .review__reviewBlock {
    font-size: 16px;
    line-height: 23px;
    padding: 30px 20px;
  }
  .review__doctorPosition {
    margin-bottom: 35px;
  }
  .review__doc {
    width: 420px;
  }}
@media (max-width: 1200px) {
	.swiper-pagination.my-swiper-pagination {
		margin: -15px 0;
}
  .button__container{
    width: 100%;
  }
  .swiper-button-next.my-swiper-button-next, .swiper-button-prev.my-swiper-button-prev {
    display: none;
  }

  .review__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .review__img {
    display: none;
    }
  .review__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .review__info {
    margin: 0;
    width: 100%;
    padding: 0 15px;
  }
  .review__reviewBlock {
    margin: 0 auto 15px auto;
    max-width: 100%;
  }}
@media (max-width: 700px) {
  .review__title{
    font-size: 30px;
  }}

.action-attention__container {
	max-width: 1156px;
	background-color: #DEF0EC;
	border: none;
	border-radius: 20px;
	padding: 40px 61px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.action-attention__block-img {
	width: 30px;
	height: 30px;
}

.action-attention__list {
	text-align: start;
	list-style-type: disc; /* Устанавливаем тип маркера (диск) */
  	padding-left: 17px; /* Добавляем отступ слева для списка */
}

.action-attention__list li::marker {
	color: #4AD3B0; /* Устанавливаем цвет маркеров в красный */
}

.action-attention__item {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 19.5px;
	color: #222631;
	list-style-type: disc;
}

.action-attention__item:not(:first-child) {
	margin-top: 15px;
}

.action-attention__strong-txt {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19.5px;
	color: #222631;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.krasnogorsk-clinik .banner__info{
	padding: 54px 0 120px;
}
@media(max-width: 768px){
	.krasnogorsk-clinik .banner__info{
		padding: 41px 0 120px;
	}}
.banner.clinic-banner .banner__item.krasnogorsk-clinik{
	background-position: right top;
}
.deviz{
	margin-top: -25px;
	margin-bottom: 22px;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	
}

.krasnogorsk-banner .clinica-banner-button{
	    background-color: transparent;
		border: none;
		border-radius: 0;
		padding: 0;
		min-width: auto;
		min-height: auto;
		text-align: center;
		margin-right: 34px;
}
.phone::before {
    content: '';
    background: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5562 10.9062L12.1007 11.359C12.1007 11.359 11.0181 12.4355 8.0631 9.4972C5.10812 6.55901 6.1907 5.48257 6.1907 5.48257L6.4775 5.19738C7.1841 4.49484 7.2507 3.36691 6.6342 2.54348L5.37326 0.859076C4.61028 -0.160083 3.13596 -0.294713 2.26145 0.574827L0.691848 2.13552C0.258228 2.56668 -0.0323518 3.12559 0.0028882 3.74561C0.0930382 5.33182 0.810708 8.74469 4.81536 12.7266C9.0621 16.9492 13.0468 17.117 14.6763 16.9651C15.1917 16.9171 15.6399 16.6546 16.0011 16.2954L17.4217 14.883C18.3806 13.9295 18.1102 12.2949 16.8833 11.628L14.9728 10.5894C14.1672 10.1515 13.1858 10.2801 12.5562 10.9062Z' fill='%23609ECA'/%3E%3C/svg%3E") center center/contain no-repeat;
    background-size: contain;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
}

.krasnogorsk-banner .phone{
	display: flex;
    align-items: center;
    gap: 12px;
	font-size: 20px;
	line-height: 26px;
}
@media(max-width: 768px){
	.krasnogorsk-banner .phone{
		justify-content: center;
	}}

.krasnogorsk-banner .whatsapp{
	display: flex;
    align-items: center;
    gap: 6px;
	font-size: 20px;
	line-height: 26px;
}
@media(max-width: 768px){
	.krasnogorsk-banner .whatsapp{
		justify-content: center;
	}}
.krasnogorsk-banner .whatsapp:before{
	    content: '';
		background: url("data:image/svg+xml,%3Csvg width='24' height='26' viewBox='0 0 24 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.391 14.219C15.657 14.219 18.203 15.547 18.313 15.735C18.344 15.813 18.344 15.907 18.344 15.969C18.344 16.36 18.219 16.797 18.078 17.157C17.719 18.032 16.265 18.594 15.375 18.594C14.625 18.594 13.078 17.938 12.406 17.625C10.172 16.609 8.781 14.875 7.437 12.891C6.843 12.016 6.312 10.938 6.328 9.86001V9.73501C6.359 8.70401 6.734 7.96901 7.484 7.26601C7.718 7.04701 7.968 6.92201 8.296 6.92201C8.483 6.92201 8.671 6.96901 8.874 6.96901C9.296 6.96901 9.374 7.09401 9.53 7.50001C9.639 7.76601 10.436 9.89101 10.436 10.047C10.436 10.641 9.358 11.313 9.358 11.672C9.358 11.75 9.389 11.828 9.436 11.906C9.78 12.64 10.436 13.484 11.03 14.047C11.749 14.735 12.514 15.188 13.389 15.625C13.498 15.688 13.608 15.734 13.733 15.734C14.202 15.734 14.983 14.218 15.389 14.218L15.391 14.219ZM12.219 22.5C17.625 22.5 22.031 18.094 22.031 12.688C22.031 7.28201 17.625 2.87601 12.219 2.87601C6.813 2.87601 2.407 7.28201 2.407 12.688C2.407 14.751 3.063 16.766 4.282 18.438L3.048 22.079L6.829 20.876C8.423 21.923 10.313 22.501 12.22 22.501L12.219 22.5ZM12.219 0.906006C18.719 0.906006 24 6.18701 24 12.687C24 19.187 18.719 24.468 12.219 24.468C10.235 24.468 8.266 23.968 6.516 22.999L0 25.093L2.125 18.765C1.016 16.937 0.438 14.827 0.438 12.687C0.438 6.18701 5.719 0.906006 12.219 0.906006Z' fill='%234AD3B0'/%3E%3C/svg%3E") center center/contain no-repeat;
		background-size: contain;
		margin-right: 5px;
		display: inline-block;
		position: relative;
		top: 0;
		width: 24px;
		height: 24px;
}
.krasnogorsk-banner .clinica-banner-button{
	text-align: left;
}
@media(max-width: 768px){
	.krasnogorsk-banner .clinica-banner-button{
		transform: translateX(20px);
	}}

.logoland{
	display: flex;
	align-items: center;
	gap: 7px;
	max-width: 560px;
	width: 100%;
	padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 2px;
    padding-right: 15px;
	border: 1px solid #D0D0D0;
	border-radius: 10px;
}
.logoland:hover,
.logoland:hover .logoland__text{
	text-decoration: none;
}
@media(max-width: 768px){
	.logoland{
		flex-direction: column;
		padding-top: 7px;
	}}
.owl-carousel .owl-item img.logoland__img{
	width: 111px;
}
@media(max-width: 768px){
	.owl-carousel .owl-item img.logoland__img{
		margin-bottom: 0;
	}}
.logoland__text{
	font-size: 20px;
	line-height: 26px;
	font-weight: 700;
	color: #424242;
}
.title.krasnogorsk-title{
	margin-bottom: 28px;
}

@media(max-width: 768px){
	.krasnogorsk-clinik .banner__txt{
		margin: 25px 0 51px;
		text-align: left;
	}
	.mobile-hidden{
		display: none;
	}}


.rs-header__logo img {
	transition: 1s all ease;
}

.rs-header__logo img:hover {
	transform: scale(1.02);
}

.owl-prev, .owl-next {
	transition: 1s ease all !important;
}

.owl-prev:hover, .owl-next:hover {
	background-color:#60caac !important;
}

.owl-prev:hover svg path, .owl-next:hover svg path {
	fill:#fff !important;
}

.owl-prev svg path, .owl-next svg path {
	transition: .5s ease all !important;
}

.section-text a:hover {
	color:#4AD3B0 !important;
}

.section-text span a:hover {
	color:#4AD3B0 !important;
}

.tab-body__text a:hover {
	color:#4AD3B0 !important;
}

.tab-body__text span a:hover {
	color:#4AD3B0 !important;
}

.price_container-with-btn{
	display: flex;
	gap: 20px;
	padding: 0px;
	margin: 0 !important;
	margin-bottom: 30px !important;
}

.price_container-with-btn .price__title{
	margin: 0px;
}

.price__btn-list{
	border: 1px solid #7aa9b0;
    background: transparent;
    color: #7aa9b0;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 14px 30px 5px;
    text-decoration: none;
    text-align: center;
	transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 120%;
}

.price__btn-list:hover{
	text-decoration: none;
	background-color: #7aa9b0;
	color: #fff;
}
.js-modal-content .cm-btn {line-height: inherit;height: inherit;}

/* css/headerinline.css */
body {
    font-family: 'Montserrat' !important;
    font-size: 16px !important;
    font-style: normal;
    line-height: 1.5;
    color: #222631;
}

h2.about-description__title.section-title,
p {
    font-family: 'Montserrat', sans-serif !important;

}

p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: normal;
}

.rs-header__logo img {
    display: block;
    margin-bottom: 0;
}

.cm-header__tel a {
    font-size: 14px;
}

.js-drop {
    position: absolute;
    display: none;
    z-index: 100;
}

.js-city {
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #eee;

}

.js-clinics {
    display: none;
    cursor: pointer;
}

.js-clinics p {
    margin: 0;
    padding: 5px 0;
    font-size: 14px;
}

.js-clinics p:hover {
    background: #eee;
}

.header__button-inner {
    height: 100%;
    position: relative;
    z-index: 100;
}

.header-phones {
    height: 100%;
    justify-content: center;
}

.cm-header__tel {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ddd;
}

.cm-header__tel a:hover {
    color: #fff;
}

.slide-content__block {
    position: relative;
}

.main-banner__btn.rs-btn {
    padding: 20px 40px;
    width: auto;
    height: auto;

}

.js-drop.cm-main-banner-drop {
    width: 300px;
    margin-right: 10px;
    padding: 0 10px;

    bottom: 0;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    z-index: 100;
    border-radius: 5px;
}

.cm-btn.cm-btn--sm {
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    font-weight: 100;
}

.js-drop.cm-price-drop {
    position: absolute;
    width: 250px;
    margin-right: 10px;

    background: #fff;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 0 5px #ccc;
}

.banner__btn-wrap {
    display: inline-block;
    position: relative;
}

.cm-banner-button-drop {
    left: 100%;
    width: 300px;
    padding: 10px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    box-shadow: 0 0 5px #ccc;
    border-radius: 5px;
}

.services__content p {
    text-align: center;
    margin-bottom: 15px;
}

.services__content p+ul {
    margin-top: 50px;
}

.services__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width:769px) {
    .services__content ul {
        -webkit-columns: 2;

        -moz-columns: 2;
        columns: 2;
    }}

.services__content ul li {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
}

.services__content ul li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #4ad3b0;
    border-radius: 100%;
    top: 10px;
    left: 0px;
}

@media (max-width:768px) {
    .main-banner__btn.rs-btn {
        display: block;
        margin: auto;
        padding: 20px 40px;
        width: 250px;


    }

    .js-drop.cm-main-banner-drop {
        position: absolute;
        width: 300px;
        margin-right: 0;
        margin-bottom: 10px;
        padding: 0 10px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        box-shadow: 0 0 5px #ccc;
        z-index: 100;
        border-radius: 5px;
        z-index: 100000;
    }}

.header__social {
    position: relative;
    margin-left: 10px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.header__social {
    display: flex;
    position: relative;

}

.header__social a {
    margin-right: 10px;
}

@media all and (max-width:768px) {
    .header__social:before {
        position: absolute;
        content: '';
        width: 1px;
        top: -10%;
        left: -16px;
        height: 120%;
        background: rgba(34, 105, 131, 0.35);
    }}

.js-modal {
    display: flex;
    position: fixed;
    padding: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: .4s;
    z-index: -1;
    overflow: auto;
}

.js-modal.cm-modal-active {
    opacity: 1;
    z-index: 1060;
}


.js-modal-content {
    display: none;
    position: relative;
    margin: 40px auto auto;
    background: #fff;
}

.js-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

body.oveflow-hidden {
    overflow: hidden;
}

.js-drop {
    position: absolute;
    display: none;
    z-index: 100;
}

@media (max-width:768px) {
    .js-drop {
        position: relative;
        left: auto;
        width: 300px;
        top: auto;
        transform: translateY(0);
        margin-left: 0;
    }}

.js-city {
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #eee;

}

.js-clinics {
    display: none;
    cursor: pointer;
}

.js-clinics p {
    margin: 0;
    padding: 5px 0;
    font-size: 14px !important;
}

.js-clinics p:hover {
    background: #eee;
}

.header__button-inner {
    height: 100%;
    position: relative;
    z-index: 100;
}

.js-c-forms .wpcf7 {
    display: none;
}

@media (max-width:768px) {
    .js-drop.cm-price-drop {
        margin-right: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }}

.tab-content {
    display: none;
}

/* assets/css/critical.css */
.title-h1,
.title-h2 {
    font-size: 32px
}

.title-h1,
.title-h2,
.title-h4 {
    color: var(--txt-black);
    font-weight: 600
}

.btn-main,
.title-h1,
.title-h2,
.title-h4 {
    font-weight: 600
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

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

:active,
:focus,
a:active,
a:focus {
    outline: 0
}

aside,
footer,
header,
nav,
svg {
    display: block
}

body,
html {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button,
input,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer;
    background-color: transparent
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a {
    color: inherit
}

a,
a:hover,
a:visited {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    font-size: inherit;
    font-weight: 400;
    text-transform: none;
    font-family: Montserrat, Arial, sans-serif
}

:root {
    --bg-light-grey: #eef1f0;
    --bg-light-blue: #edf7f5;
    --bg-blue: #02b6d1;
    --bg-white: #fff;
    --bg-mid-blue: #7fc4d0;
    --accent-blue: #02b6d1;
    --accent-dark-green: #01687b;
    --txt-black: #223031;
    --txt-blue: #02b6d1;
    --txt-grey-light: #cbdfe2;
    --txt-grey-dark: #94a7aa;
    --txt-white: #fff;
    --font-family: "Montserrat", sans-serif;
    --second-family: "Manrope", sans-serif
}

body {
    font-family: var(--font-family);
    background: var(--bg-white);
    line-height: normal
}

.title-h2 {
    text-transform: unset
}

.header__item-link,
.header__list-sub-item-link {
    text-transform: uppercase;
    font-size: 14px;
    transition: .2s
}

.title-h4 {
    font-size: 20px
}

.btn-border,
.btn-main {
    font-size: 16px;
    transition: .2s
}

.container-bc {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: unset
}

.btn-main {
    background: var(--accent-dark-green);
    border-radius: 4px;
    padding: 14px 20px 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: var(--bg-white);
    max-height: 50px
}

.btn-border,
.header__inner {
    align-items: center;
    display: flex
}

.btn-main:active {
    background: #005667
}

section {
    margin: 0 0 80px
}

.btn-border {
    font-weight: 500;
    color: var(--bg-blue);
    border: 1px solid var(--bg-blue);
    border-radius: 4px;
    padding: 14px 23px 15px;
    white-space: nowrap;
    justify-content: center;
    gap: 8px
}

.header__item-link,
.header__list-sub-item-link,
.preview__card-desc,
.preview__item,
.preview__subtitle {
    font-weight: 400;
    color: var(--txt-black)
}

.btn-border:active {
    background: var(--bg-blue);
    color: #fff
}

.btn-border:active path {
    stroke: #fff
}

.header__item:active .header__item-link,
.header__list-sub-item-link:active {
    color: var(--bg-blue)
}

.scroll {
    translate: 0 60px;
    opacity: 0;
    transition: translate .6s ease-in-out, opacity .6s ease-in-out
}

.scroll--active {
    translate: 0 0px;
    opacity: 1
}

.header__item:hover .header__list-sub-box,
.header__list-sub-box,
.header__right-sub {
    opacity: 0;
    pointer-events: none
}

.header {
    margin: 20px 0 40px
}

.header__inner {
    border-radius: 16px;
    padding: 20px 24px;
    background: var(--bg-light-blue);
    justify-content: space-between;
    gap: 20px
}

.header__list-sub,
.header__right-sub-body {
    box-shadow: 0 1px 20px 0 rgba(4, 6, 28, .1);
    background: var(--bg-white)
}

.header__logo-img {
    margin-bottom: 0 !important
}

.header__list {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0
}

.header__item {
    position: relative
}

.header__list-sub-box {
    position: absolute;
    top: 14px;
    left: 0;
    min-width: 240px;
    z-index: 2;
    padding: 16px 0 0;
    transition: .3s;
    border-radius: 16px
}

.header__item:hover>.header__list-sub-box,
.header__list-sub-item:hover>.header__list-sub-box {
    opacity: 1;
    pointer-events: all
}

.header__item>.header__list-sub-box {
    left: 0;
    top: 14px
}

.header__list-sub .header__list-sub-item>.header__list-sub-box {
    left: 100%;
    top: 0;
    margin-left: 0;
    min-width: 240px;
    padding-left: 6px
}

.header__list-sub .header__list-sub {
    margin-left: 0;
    margin-top: 0;
    box-shadow: 0 1px 20px 0 rgba(4, 6, 28, .1);
    background: var(--bg-white, #fff);
    border-radius: 16px
}

@media (max-width:760px) {
    .header__item>.header__list-sub-box {
        left: -40px
    }}

.header__list-sub {
    border-radius: 16px;
    padding: 16px 0 16px 16px
}

.header__list-sub-item-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    padding: 12px 12px 12px 8px
}

.header__list-sub-item-link>svg {
    flex-shrink: 0;
    margin-left: 8px;
    display: block;
    transform: rotate(-90deg)
}

.header__item-link {
    display: flex;
    align-items: center;
    gap: 3px
}

.header__item-link path,
.header__item-link svg,
.preview__link-tel {
    transition: .2s
}

.header__item:active path {
    fill: var(--bg-blue)
}

.header__item:active .header__item-link svg {
    transform: rotate(180deg)
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative
}

.header__right-sub {
    position: absolute;
    top: 30px;
    right: 0;
    width: 310px;
    padding: 16px 0 0;
    z-index: 2;
    transition: .3s
}

.header__right-sub-body {
    border-radius: 16px;
    padding: 16px
}

.header__right-sub-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 30px
}

.header__right-sub-accordion-head {
    border-radius: 8px;
    padding: 12px 12px 12px 8px;
    background: var(--bg-light-blue);
    display: flex;
    align-items: center;
    gap: 3px;
    transition: .2s
}

.preview__links,
.preview__list {
    display: flex;
    gap: 8px
}

.header__right-sub-accordion-head svg {
    transition: .3s;
    transform: rotate(0)
}

.page__preview {
    overflow: hidden
}

.preview__inner {
    border-radius: 24px;
    padding: 60px 60px 58px;
    background: var(--bg-light-grey);
    position: relative;
    z-index: 1
}

.preview-img-wrap {
    position: absolute;
    top: 55px;
    right: 60px;
    z-index: -1;
    max-width: 325px; 
    aspect-ratio: 1 / 1;
    transform: rotate(-13deg);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-sizing: border-box;
    overflow: hidden;
}

.preview-img-wrap-mobile{
	display:none;
	margin: 50px 20px 50px auto;
    max-width: 325px; 
    aspect-ratio: 1 / 1;
    transform: rotate(-13deg);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-sizing: border-box;
    overflow: hidden;
}

.preview-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
    display: block;
}

.preview-img-wrap-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
    display: block;
}



.preview-img-elem {
    position: absolute;
    z-index: -2
}

.preview-img-elem-1 {
    bottom: 105px;
    left: -46px
}

.preview-img-elem-2 {
    top: 79px;
    right: -63px
}

.preview__content {
    max-width: 650px;
    width: 100%;
    margin: 0 0 60px
}

.preview__list {
    flex-wrap: wrap;
    margin: 0 0 40px
}

.preview__item {
    font-size: 14px;
    border: 1px solid var(--txt-black);
    border-radius: 100px;
    padding: 3px 9px 4px;
    cursor: context-menu;
    transition: .2s
}

.preview__item:active {
    background-color: var(--txt-black);
    color: #fff
}

.preview__title {
    margin: 0 0 30px
}

.preview__subtitle {
    font-size: 20px;
    margin: 0 0 40px
}

.preview__link-tel:active {
    opacity: .7
}

.preview__link-btn-text-mob {
    display: none
}

.preview__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.preview__card {
    border-radius: 16px;
    padding: 20px;
    background: var(--bg-white);
    display: flex;
    align-items: start;
    gap: 16px;
    transition: .2s
}

.preview__card:active {
    background-color: #f8f8f8
}

@media(hover:hover) {
    .btn-main:hover {
        background: #005667;
        color: #fff
    }

    .btn-border:hover {
        background: var(--bg-blue);
        color: #fff
    }

    .btn-border:hover path {
        stroke: #fff
    }

    .header__item:hover .header__item-link,
    .header__list-sub-item-link:hover {
        color: var(--bg-blue)
    }

    .header__item:hover path {
        fill: var(--bg-blue)
    }

    .header__item:hover .header__item-link svg {
        transform: rotate(180deg)
    }

    .preview__item:hover {
        background-color: var(--txt-black);
        color: #fff
    }

    .preview__link-tel:hover {
        opacity: .7
    }

    .preview__card:hover {
        background-color: #f8f8f8
    }}

.preview__card-img {
    min-width: 32px
}

.preview__card-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.preview__card-desc {
    font-size: 16px;
    line-height: 125%
}

/* assets/css/style.css */
.head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;

	margin: 0px 0px 40px 0px;
}

.color-blue {
	color: var(--bg-blue);

	transition: all .2s ease;
}

/* -------------------------header------------------------- */

.accordion__item-head--show svg {
	transform: rotate(180deg);
}

.header__right-sub-accordion-head:active {
	background-color: #dbe4e2;
}

@media(hover:hover) {
	.header__right-sub-accordion-head:hover {
		background-color: #dbe4e2;
	}}

.header__right-sub-accordion-head-text {
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--txt-black);
}

.header__right-sub-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.header__right-sub-accordion-list {
	padding: 4px 0px 0px 0px;
}

.header__right-sub-accordion-item {}

.header__right-sub-accordion-item-link {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-grey-dark);
	text-align: start;

	display: block;
	border-radius: 8px;
	padding: 12px 12px 12px 20px;

	transition: all .2s ease;
}

.header__right-sub-accordion-item-link:active {
	color: var(--txt-black);
}

@media(hover:hover) {
	.header__right-sub-accordion-item-link:hover {
		color: var(--txt-black);
	}}

.header__right-sub-link {
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--txt-black);
	text-align: start;

	border-radius: 8px;
	padding: 12px 12px 12px 8px;
	background: var(--bg-light-blue);

	transition: all .2s ease;
}

.header__right-sub-link:active {
	background-color: #dbe4e2;
}

@media(hover:hover) {
	.header__right-sub-link:hover {
		background-color: #dbe4e2;
	}}

.header__right-sub-bottom {}

.header__right-sub-social {
	display: flex;
	gap: 4px;
}

.header__right-sub-social-link {
	transition: all .2s ease;
}

.header__right-sub-social-link:active {
	opacity: .7;
}

@media(hover:hover) {
	.header__right-sub-social-link:hover {
		opacity: .7;
	}}

.header__tel {
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	color: var(--txt-black);

	transition: all .2s ease;
}

.header__tel:active {
	color: var(--bg-blue);
}

@media(hover:hover) {
	.header__tel:hover {
		color: var(--bg-blue);
	}}

.header__tel-icon {
	display: none;
}

.header-burger-btn {}

.header-burger-btn path {
	transition: all .2s ease;
}

.header-burger-btn:active>svg path {
	fill: var(--bg-blue);
}

@media(hover:hover) {
	.header-burger-btn:hover>svg path {
		fill: var(--bg-blue);
	}}

@media(min-width:1241px) {
	.header-burger-btn:hover .header__right-sub {
		opacity: 1;
		pointer-events: all;
	}}

/* -------------------------burger-menu------------------------- */

.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	background-color: rgb(57, 63, 70, .6);

	display: none;

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.burger-menu--visible {
	opacity: 1;
	pointer-events: all;
}

.burger-menu__window {
	max-width: 496px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: var(--bg-white);
	padding: 18px 20px 40px 32px;
	margin: 0px 0px 0px auto;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;

	transform: translateX(100%);
	transition: all .3s ease;
}

.burger-menu--visible .burger-menu__window {
	transform: translateX(0%);
}

.burger-menu__top {}

.burger-menu__head {
	margin: 0px 0px 30px 0px;
	border-radius: 16px;
	padding: 16px 20px;
	background: var(--bg-light-blue);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.burger-menu__logo {}

.burger-menu__logo-img {}

.burger-menu__btn-close {}

.burger-menu__btn-close rect {
	transition: all .2s ease;
}

.burger-menu__btn-close:active rect {
	fill: var(--bg-blue);
}

@media(hover:hover) {
	.burger-menu__btn-close:hover rect {
		fill: var(--bg-blue);
	}}

.burger-menu__list {
	display: flex;
	flex-direction: column;
	gap: 4px;

	margin: 0px 0px 40px 0px;
}

.burger-menu__item {}

.burger-menu__item-hide-480 {
	display: none;
}

.burger-menu__accordion {}

.burger-menu__accordion-head {
	border-radius: 8px;
	padding: 12px;
	background: var(--bg-light-blue);
	display: block;
	cursor: pointer;

	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--txt-black);

	display: flex;
	align-items: center;
	gap: 3px;

	transition: all .2s ease;
}

.burger-menu__accordion-head svg {
	transition: all .3s ease;
	transform: rotate(0deg);
}

.burger-menu__accordion-head.accordion__item-head--show svg {
	transform: rotate(180deg);
}

.burger-menu__accordion-head:active {
	background-color: #d5e6e2;
}

@media(hover:hover) {
	.burger-menu__accordion-head:hover {
		background-color: #d5e6e2;
	}}

.burger-menu__accordion-text {
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--txt-black);
}

.burger-menu__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.burger-menu__accordion-list {}

.burger-menu__accordion-item {}

.burger-menu__accordion-item-link {
	border-radius: 8px;
	padding: 12px 12px 12px 20px;
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
	display: block;
}

.burger-menu__item-hide {
	display: none;
}

.burger-menu__item-link {
	border-radius: 8px;
	padding: 12px;
	background: var(--bg-light-blue);
	display: block;

	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--txt-black);

	transition: all .2s ease;
}

.burger-menu__item-link:active {
	background-color: #d5e6e2;
}

@media(hover:hover) {
	.burger-menu__item-link:hover {
		background-color: #d5e6e2;
	}}

.burger-menu__top-desc {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.burger-menu__top-link {
	font-weight: 600;
	font-size: 20px;
	color: var(--txt-black);
}

.burger-menu__top-text {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
}

.burger-menu__bottom {}

/* -------------------------we-treat------------------------- */

.page__we-treat {}

.we-treat__container {}

.we-treat__inner {}

.we-treat__head {}

.we-treat__title {}

.we-treat__link {}

.we-treat__content {
	display: flex;
	gap: 16px;
}

.we-treat__card {
	border-radius: 24px;
	padding: 40px;
	background: var(--bg-light-blue);
	width: 100%;

	position: relative;
	z-index: 1;

	transition: all .2s ease;
}

.we-treat__card.scroll {
	transition: translate .6s ease-in-out, opacity .6s ease-in-out, background-color .2s ease;
}

.we-treat__card:active {
	background-color: #e9f1f0;
}

@media(hover:hover) {
	.we-treat__card:hover {
		background-color: #e9f1f0;
	}}

.we-treat__card-big {
	max-width: 504px;
	min-height: 528px;
}

.we-treat__card-img {
	position: absolute;
	max-width: 100%;
	z-index: -1;
}

.we-treat__card-img-1 {
	right: 33px;
	bottom: 29px;
}

.we-treat__card-title {
	font-weight: 500;
	font-size: 20px;
	color: var(--txt-black);

	margin: 0px 0px 40px 0px;
}

.we-treat__card-list {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.we-treat__card-item {}

.we-treat__card-item-link {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	transition: all .2s ease;
}

.we-treat__card-item-link:active {
	color: var(--bg-blue);
}

@media(hover:hover) {
	.we-treat__card-item-link:hover {
		color: var(--bg-blue);
	}}

.we-treat__cards {
	display: flex;
	gap: 16px;
	width: 100%;
}

.we-treat__card-medium {
	max-width: 400px;
}

.we-treat__card-img-2 {
	right: 40px;
	bottom: 25px;
}

.we-treat__cards-column {
	max-width: 296px;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* -------------------------consultation------------------------- */

.page__consultation {}

.consultation__container {}

.consultation__inner {
	border-radius: 30px;
	padding: 60px;
	background: var(--bg-blue);

	display: flex;
	align-items: start;
	gap: 60px;
}

.consultation__left {
	max-width: 250px;
	width: 100%;
}

.consultation__item {
	font-weight: 500;
	font-size: 14px;
	color: var(--bg-white);

	border: 1px solid var(--bg-white);
	border-radius: 100px;
	padding: 3px 9px 4px 9px;
	margin: 0px 0px 30px 0px;

	display: inline-block;
}

.consultation__subtitle {
	font-weight: 500;
	font-size: 16px;
	color: var(--bg-white);

	margin: 0px 0px 16px 0px;
	line-height: 1.2;
}

.consultation-social {
	position: relative;
	z-index: 1;
}

.consultation-social-line {
	position: absolute;
	top: -20px;
	right: 49px;
	z-index: -1;
}

.consultation__social {
	display: inline-flex;
	align-items: center;
	gap: 4px;

	border-radius: 4px;
	padding: 4px;
	background: var(--bg-white);
}

.consultation__social-item {}

.consultation__social-item-link {
	transition: all .2s ease;
}

.consultation__social-item-link:active {
	opacity: .7;
}

@media(hover:hover) {
	.consultation__social-item-link:hover {
		opacity: .7;
	}}

.consultation__right {
	max-width: 802px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 30px;
}

.consultation__title {
	max-width: 500px;
	color: #aff0fd;
	margin: unset;
	line-height: 1.2;
}

.consultation__title-2 {
	width: 100%;
	max-width: unset;
}

.consultation__title-sp {
	color: var(--bg-white);
}

.consultation__text {
	font-weight: 400;
	font-size: 16px;
	color: var(--bg-white);
	margin: unset;
}

.consultation__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

form p {
	margin: unset;
}

.consultation__form-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 16px;
}

.consultation__form-row br {
	display: none;
}

.consultation__form-row>p {
	margin: 0;
	padding: 0;
	display: contents;
}

.consultation__form-row button,
.consultation__form-row .consultation__form-btn {
	grid-column: auto;
	min-width: 0;
}

button {
	cursor: pointer;
	background-color: transparent;
	border: none;
}

.consultation__form-row input[type="text"],
.consultation__form-row input[type="tel"],
.consultation__form-row input[type="email"] {
	height: 49px;
	min-height: 49px;
	max-height: 49px;
	line-height: 49px;
	box-sizing: border-box;
	padding-top: 0;
	padding-bottom: 0;
}

.consultation__form-row .consultation__form-btn,
.consultation__form-row button[type="submit"] {
	height: 49px;
	min-height: 49px;
	max-height: 49px;
	display: flex;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
}

.consultation__form-row label {
	height: 49px;
	min-height: 49px;
	max-height: 49px;
	display: flex;
	align-items: center;
}

.consultation__form-row {
	align-items: stretch;
}

.consultation__form-label {}

.consultation__form-input {
	border-radius: 4px;
	padding: 13px 23px 15px 23px;
	border: 1px solid transparent;
	width: 100%;
	background: var(--bg-white);
	font-weight: 500;
	font-size: 16px;
	color: var(--txt-black);
	transition: all .2s ease;
	min-width: 0;
}


.consultation__form-input:active {
	border: 1px solid var(--accent-dark-green);
}

.consultation__form-input:focus {
	border: 1px solid var(--accent-dark-green);
}

@media(hover:hover) {
	.consultation__form-input:hover {
		border: 1px solid var(--accent-dark-green);
	}}

.consultation__form-input::placeholder {
	color: var(--txt-grey-light);
}

.consultation__form-btn {
	white-space: nowrap;
	background: var(--accent-dark-green);
	border-radius: 4px;
	padding: 14px 20px 16px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: var(--bg-white);
	transition: all .2s ease;
}

.consultation__form-label-check {
	display: flex;
	align-items: start;
	gap: 10px;
	cursor: pointer;
}

.consultation__form-label-checkbox {}

.consultation__form-label-check br {
	display: none;
}

.wpcf7-form-control-wrap[data-name="your-consent"],
.wpcf7-form-control-wrap[data-name="your-consent"] *,
.consultation__form-label-checkbox,
.consultation__form-label-checkbox *,
.wpcf7-list-item {
	all: unset;
	display: revert;
	box-sizing: border-box;
	margin: 0 !important;	
	padding: 0;
	background: none;
	border: none;
	font: inherit;
	color: inherit;
	line-height: 1.2;
}

.wpcf7-form-control-wrap{
	margin-top: 2px !important;
}

.consultation__form form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.consultation__form-label-checkbox input[type="checkbox"] {
	appearance: none;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background: var(--bg-light-blue);
	border-radius: 4px;
	cursor: pointer;
	transition: all .2s ease;
}

.consultation__form-label-checkbox input[type="checkbox"]:checked {
	background-image: url("/wp-content/themes/wp19/assets/img/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.checkbox {
	appearance: none;
	-webkit-appearance: none;
	/* для поддержки в Safari */
}

/* Стилизация чекбокса */
.checkbox {
	appearance: none;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background: var(--bg-light-blue);
	border-radius: 4px;
	cursor: pointer;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

	transition: all .2s ease;
}

.consultation__form-label,
.consultation__form-label-check {
	position: relative;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 3px;
	z-index: 20;
	background: #FFEEEE;
	color: #d62e2e;
	padding: 6px 12px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
	box-shadow: 0 2px 8px rgba(100, 0, 0, 0.07);
	white-space: normal;
	opacity: 1;
	min-width: 120px;
	max-width: 210px;
	pointer-events: none;
	border: 1px solid #FFD7D7;
	display: none !important;
}

.wpcf7-not-valid-tip::after {
	content: "";
	position: absolute;
	top: -7px;
	left: 18px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #FFEEEE;
	z-index: 21;
}

.wpcf7-form .wpcf7-list-item,
.cm-form .wpcf7-list-item {
	gap: 0px !important;
}

.consultation__form-label-check .wpcf7-not-valid-tip {
	left: 28px;
	top: 2px;
	margin-top: 0;
	background: #FFEEEE;
	color: #d62e2e;
	border: 1px solid #FFD7D7;
	min-width: 120px;
	max-width: 210px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(100, 0, 0, 0.07);
	padding: 6px 12px;
	display: none !important;
}

.consultation__form-label-check .wpcf7-not-valid-tip::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 7px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-right: 7px solid #FFEEEE;
	border-left: none;
	width: 0;
	height: 0;
}

.consultation__form-label-check:active .checkbox {
	background-color: #deeeeb;
}

.consultation__form-label-check:hover .consultation__form-label-check-text {
	color: #fff;
}

@media(hover:hover) {
	.consultation__form-label-check:hover .checkbox {
		background-color: #deeeeb;
	}

	.consultation__form-label-check:hover .consultation__form-label-check-text {
		color: #fff;
	}}

/* Оформление состояния checked */
.checkbox:checked {
	background-image: url("/wp-content/themes/wp19/assets/img/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.consultation__form-label-check-text {
	font-weight: 400;
	font-size: 14px;
	color: var(--bg-light-blue);
}

/* -------------------------stock------------------------- */

.page__stock {}

.stock__container {}

.stock__inner {}

.stock__head {}

.stock__title {}

.stock__link {}

.stock__cards {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.stock__card {
	border-radius: 24px;
	background: var(--bg-light-blue);
	padding: 30px;
	overflow: hidden;

	transition: all .2s ease;
}

.stock__card.scroll {
	transition: translate .6s ease-in-out, opacity .6s ease-in-out, background-color .2s ease;
}

.stock__card-img path {
	transition: all .2s ease;
}

.stock__card-1:active .stock__card-img path:nth-child(1) {
	stroke: var(--accent-dark-green);
}

.stock__card-1:active .stock__card-img path:nth-child(4) {
	stroke: var(--accent-dark-green);
}

.stock__card-2:active .stock__card-image-elem path:nth-child(1) {
	stroke: var(--accent-dark-green);
}
/*
@media(hover:hover) {
	.stock__card-3:hover {
		background: var(--accent-dark-green);
	}

	.stock__card:hover .color-blue {
		color: var(--accent-dark-green);
	}

	.stock__card-1:hover .stock__card-img path:nth-child(1) {
		stroke: var(--accent-dark-green);
	}

	.stock__card-1:hover .stock__card-img path:nth-child(4) {
		stroke: var(--accent-dark-green);
	}

	.stock__card-2:hover .stock__card-image-elem path:nth-child(1) {
		stroke: var(--accent-dark-green);
	}

	.stock__card-4:hover .stock__card-image path:nth-child(2) {
		stroke: var(--accent-dark-green);
	}

	.stock__card-4:hover .stock__card-image path:nth-child(3) {
		stroke: var(--accent-dark-green);
	}
}
*/
.stock__card-image-elem path {
	transition: all .2s ease;
}

.stock__card-1 {
	padding: 40px;
	grid-column: 1/7;
	grid-row: 1/3;
}

.stock__card-1 .stock__card-title {
	font-weight: 600;
	font-size: 24px;
	color: var(--txt-black);

	margin: 0px 0px 24px 0px;
}

.stock__card-subtitle {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	margin: 0px 0px 28px 0px;
}

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

.stock__card-image {
	max-width: 100%;
	height: auto;
}

.stock__card-2 {
	grid-column: 7/13;
	grid-row: 1/2;
	padding: 37px 40px;
	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.stock__card-2 .stock__card-title {
	font-weight: 600;
	font-size: 22px;
	color: var(--txt-black);

	max-width: 250px;
}

.stock__card-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 250px;
}

.stock__cards .stock__card-list{
	max-width: 100%;
    flex-direction: column;
}

.stock__cards .stock__card-list .stock__card-item{
	width: fit-content;
}


.stock__card-item {
	font-weight: 400;
	font-size: 14px;
	color: var(--txt-black);

	border: 1px solid var(--txt-black);
	border-radius: 100px;
	padding: 3px 9px 4px 9px;
}

.stock__card-image-elem {
	position: absolute;
	right: -57px;
	bottom: 0;
	z-index: -1;
	width: 400px;
	height: auto;
}

.stock__card-3 {
	grid-column: 7/10;
	grid-row: 2/3;
	background: var(--bg-blue);

	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.stock__card-head {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.stock__card-3 .stock__card-title {
	font-weight: 600;
	font-size: 22px;
	color: var(--bg-white);
}

.stock__card-title-sp {
	font-size: 28px;
}

.stock__card-icon {
	display: flex;
	justify-content: end;
}

.stock__card-3 .stock__card-subtitle {
	margin: 0;

	font-weight: 400;
	font-size: 16px;
	color: var(--bg-white);
}

.stock__card-4 {
	grid-column: 10/13;
	grid-row: 2/3;
}

.stock__card-4 .stock__card-title {
	font-weight: 600;
	font-size: 20px;
	color: var(--txt-black);

	margin: 0px 0px 17px 0px;
}

/* -------------------------prices------------------------- */

.page__prices {}

.prices__container {}

.prices__inner {}

.prices__head {}

.prices__title {}

.prices__link {
	padding: 11px 23px 13px 23px;
}

.prices__content {
	border-radius: 16px;
	padding: 40px;
	background: var(--bg-light-grey);
}

.prices__search {
	margin: 0px 0px 24px 0px;
}

.prices__search-label {
	border-radius: 8px;
	padding: 14px 12px 16px 24px;
	background: var(--bg-white);

	display: flex;
	align-items: center;
	gap: 10px;
}

.prices__search-icon {
	height: 24px;
	width: 26px;

	display: flex;
	align-items: center;
	padding: 0px 9px 0px 0px;
	border-right: 1px solid var(--txt-grey-dark);
}

.prices__search-input {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	width: 100%;
}

.prices__search-input::placeholder {
	color: var(--txt-grey-dark);
}

.prices__body {
	display: flex;
	gap: 24px;
}

.prices__sidebar {
	max-width: 339px;
	width: 100%;
}

.prices__sidebar-inner {
	border-radius: 16px;
	padding: 30px;
	background: var(--bg-white);

	position: sticky;
	left: 0;
	top: 20px;
}

.prices__sidebar-title {
	margin: 0px 0px 30px 0px;
}

.prices__sidebar-cotent {}

.prices__sidebar-dropdown {
	display: none;
}

.prices__sidebar-head {}

.prices__sidebar-head-text {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.prices__sidebar-tabs {
	transition: all .3s ease;
}

.prices__sidebar-tab {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	border-radius: 8px;
	padding: 17px 12px 18px 12px;
	border-radius: 8px;
	transition: all .2s ease;
	cursor: pointer;

	transition: all .2s ease;
}

.prices__sidebar-tab:active {
	background: var(--bg-light-blue);
}

@media(hover:hover) {
	.prices__sidebar-tab:hover {
		background: var(--bg-light-blue);
	}}

.prices__sidebar-tab--active {
	background: var(--bg-light-blue);
	opacity: 0.8;
}

.prices__sidebar-tab-complex {
	border-top: 1px solid var(--bg-light-grey);
	padding: 16px 12px 18px 12px;
}

.prices__accrodions {
	display: none;
	flex-direction: column;
	gap: 15px;
	max-width: 789px;
	width: calc(100% - 339px - 24px);
}

.prices__accrodions--active {
	display: flex;
}

.prices__accrodion {
	border-bottom: 1px solid var(--bg-light-grey);
	border-radius: 16px;
	background: var(--bg-white);
}


.prices__accrodion_new-text svg {
    min-width: 32px;
}

.prices__accrodion_new-text p{
	font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--txt-grey-dark);
	margin: 0;
    flex: 1;
}

.prices__accrodion_new-text{
	cursor: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px;
	margin-top: auto;
}

.prices__accrodion_new-text-block{
    display: flex;    
	flex-direction: column;
    gap: 10px;
}

.prices__accrodion-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px;
	cursor: pointer;
}

.prices__accrodion-text {
	transition: all .3s ease;
	word-break: break-word;
}

.prices__accrodion-head:active .prices__accrodion-text {
	color: var(--bg-blue);
}

@media(hover:hover) {
	.prices__accrodion-head:hover .prices__accrodion-text {
		color: var(--bg-blue);
	}}

.accordion__item-head--show .prices__accrodion-text {
	color: var(--bg-blue);
}

.prices__accrodion-head-icon {
	min-width: 30px;

	transition: all .3s ease;
}

.accordion__item-head--show .prices__accrodion-head-icon {
	transform: rotate(135deg);
}

.prices__accrodion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.prices__accrodion-body {
	padding: 0 30px 30px 30px;
}

.prices__accrodion-rows {
	display: flex;
	flex-direction: column;
	gap: 16px;

	margin: 0px 0px 30px 0px;
}

.prices__accrodion-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;

	border-bottom: 1px solid var(--bg-light-grey);
	padding: 0px 0px 23px 0px;
}

.prices__accrodion-row-left {
	display: flex;
	align-items: center;
	gap: 24px;
}
.prices__accrodion-row-left {
  /*display: grid;*/
  grid-template-columns: minmax(95px, max-content) 1fr;
  column-gap: 24px;
  align-items: center;
  min-width: 0;
}

.prices__accrodion-row-name {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.prices__accrodion-row-left {
  flex: 0 1 54.35%;
  min-width: 0;
  box-sizing: border-box;
}

.prices__accrodion-row-right {
  flex: 0 1 45.65%;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: 0;
  box-sizing: border-box;
}

.prices__accrodion-row-right > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

.prices__accrodion-row-date {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-grey-dark);
	min-width: 95px;
}

.prices__accrodion-row-name {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
	line-height: 125%;

	max-width: 320px;
	width: 100%;
}

.prices__accrodion-row-right {
	display: flex;
	align-items: center;
	gap: 13px;
}

.prices__accrodion-row-time {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
}

.prices__accrodion-row-price {
	font-weight: 600;
	font-size: 16px;
	color: var(--txt-black);
}

.prices__accrodion-row-btn {
	padding: 10px 13px 11px 13px;
}

.prices__accrodion-warning {
	border-radius: 8px;
	padding: 20px;
	background: var(--bg-light-grey);

	display: flex;
	align-items: center;
	gap: 16px;
}

.prices__accrodion-warning svg {
	min-width: 32px;
}

.prices__accrodion-warning-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 110%;
	color: var(--txt-grey-dark);
}

/* -------------------------our-doctors------------------------- */

.page__our-doctors {
	overflow: hidden;
}

.our-doctors__container {}

.our-doctors__inner {}

.our-doctors__head {}

.our-doctors__title {}

.our-doctors__link {}

.our-doctors__slider-inner {
	position: relative;
}

.our-doctors__slider {
	width: 100%;
	overflow: hidden;
}

.swiper-our-doctors {}

.our-doctors__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.our-doctors__slider-btn:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.our-doctors__slider-btn:hover path {
		fill: var(--txt-grey-dark);
	}}

.our-doctors__slider-btn-prev {
	left: -20px;
}

.our-doctors__slider-line {}

.our-doctors__slide {
	border-radius: 16px;
	padding: 30px 30px 40px 30px;
	height: unset;
	background: var(--bg-light-blue);
	overflow: hidden;

	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: space-between;

	transition: background .2s ease;
}

.our-doctors__slide:active {
	background: #bcf4ff;
}

.our-doctors__slide-elem path {
	transition: all .2s ease;
}

@media(hover:hover) {
	.our-doctors__slide:hover {
		background: #bcf4ff;
	}

	.our-doctors__slide:hover .our-doctors__slide-elem path {
		stroke: #fff;
	}}

.our-doctors__top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.our-doctors__name {
	font-weight: 600;
	font-size: 20px;
	color: var(--txt-black);
}

.our-doctors__desc {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
}

.our-doctors__bottom {
	position: relative;
}

.our-doctors__slide:nth-child(odd) .our-doctors__img {
	transform: rotate(-3deg) translateY(-4px);
}

.our-doctors__slide:nth-child(even) .our-doctors__img {
	transform: rotate(4deg) translateY(-7px) translateX(3px);
}

.our-doctors__img {
	max-width: 100%;
}

.our-doctors__img {
	aspect-ratio: 1 / 1.1;
	width: 100%;
	max-width: 250px;
	height: auto;
	object-fit: cover;
	object-position: center;
	border: 5px solid #fff;
	border-radius: 10px;
	background: #fff;
	display: block;
	box-sizing: border-box;
}

.our-doctors__img {
	width: 100%;
	max-width: 250px;
	height: auto;
	display: block;
}

.our-doctors__experience {
	font-weight: 400;
	font-size: 14px;
	color: var(--bg-white);

	border-radius: 100px;
	padding: 4px 10px 6px 10px;
	background: var(--bg-blue);

	position: absolute;
}

.our-doctors__slide:nth-child(odd) .our-doctors__experience {
	right: -14px;
	bottom: 21px;
}

.our-doctors__slide:nth-child(even) .our-doctors__experience {
	top: 4px;
	left: -16px;
}

.our-doctors__slide-elem {
	position: absolute;
	z-index: -1;
}

.our-doctors__slide-elem-1 {
	right: 40px;
	bottom: 1px;
}

.our-doctors__slide-elem-2 {
	right: 0;
	top: 54px;
}

.our-doctors__slide-elem-3 {
	bottom: 0;
	left: 0;
}

.our-doctors__slide-elem-4 {
	top: 186px;
	left: 0;
}

.our-doctors__slide-elem-5 {
	right: 0;
	top: 119px;
}

.our-doctors__slider-btn-next {
	right: -20px;
}

/* -------------------------rating------------------------- */

.page__rating {}

.rating__container {}

.rating__inner {}

.rating__head {}

.rating__title {}

.rating__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.rating__card {
	border-radius: 16px;
	padding: 30px;
	background: var(--bg-light-grey);

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	transition: all .1s ease;
}

.rating__card:hover .rating__card-rating {
	transform: scale(1.05);
}

.rating__card:active .rating__card-rating path {
	fill: #09D9F9;
}

@media(hover:hover) {
	.rating__card:hover .rating__card-rating {
		transform: scale(1.05);
	}

	.rating__card:hover .rating__card-rating path {
		fill: #09D9F9;
	}}

.rating__card-text {
	display: flex;
	align-items: center;
	gap: 8px;

	margin: 0px 0px 12px 0px;

	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--txt-black);

	max-width: 214px;
	width: 100%;
}

.rating__card-text-value {}

.rating__card-main {
	display: flex;
	align-items: center;
	gap: 13px;
}

.rating__card-icon {}

.rating__card-icon-img {}

.rating__card-rating {
	display: flex;
	align-items: center;
	gap: 8px;

	transition: all .2s linear;
}

.rating__card-rating-value {
	font-weight: 600;
	font-size: 24px;
	color: #2b342f;
	font-family: var(--second-family);
}

.rating__card-rating-icons {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* -------------------------video-reviews------------------------- */

.page__video-reviews {}

.video-reviews__container {}

.video-reviews__inner {}

.video-reviews__head {}

.video-reviews__title {}

.video-reviews__link {
	white-space: nowrap;
}

.video-reviews__slider-inner {
	position: relative;
}

.video-reviews__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.video-reviews__slider-btn:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.video-reviews__slider-btn:hover path {
		fill: var(--txt-grey-dark);
	}}

.video-reviews__slider-btn-prev {
	left: -20px;
}

.video-reviews__slider-btn-next {
	right: -20px;
}

.video-reviews__slider {
	width: 100%;
	overflow: hidden;
}

.swiper-video-reviews {}

.video-reviews__slider-line {}

.video-reviews__slide {
	max-height: 710px;
	overflow: hidden;
	border-radius: 16px;
	height: unset;

	transition: all .2s ease;
}

.video-reviews__slide:active .video-review {
	transform: scale(1.05);
}

@media(hover:hover) {
	.video-reviews__slide:hover .video-review {
		transform: scale(1.05);
	}}

.video-review {
	aspect-ratio: 391 / 710;
	width: 100%;
	max-width: 391px;
	height: auto;
	display: block;
	background: #000;
	border-radius: 14px;
	object-fit: cover;
}

/* ------------------------- ------------------------- */

.page__treatment-methods {}

.treatment-methods__container {}

.treatment-methods__inner {}

.treatment-methods__head {}

.treatment-methods__title {}

.treatment-methods__link {}

.treatment-methods__content {
	border-radius: 30px;
	padding: 40px;
	background: var(--bg-light-grey);

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.treatment-methods__box {
	grid-column: 1/3;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.treatment-methods__box .treatment-methods__accordion:hover .treatment-methods__accordion-head-icon {
	transform: unset;
}

.treatment-methods__accordion {
	border-radius: 24px;
	padding: 30px;
	background: var(--bg-white);
	cursor: pointer;
}

.treatment-methods__accordion-head {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.treatment-methods__accordion-head-text {
	font-weight: 600;
	font-size: 20px;
	color: var(--txt-black);

	transition: all .3s ease;
}

.accordion__item-head--show .treatment-methods__accordion-head-text {
	color: var(--bg-blue);
}

.accordion__item-head--show .treatment-methods__accordion-head-icon {
	transform: rotate(135deg) !important;
}

.treatment-methods__accordion:active .treatment-methods__accordion-head-text {
	color: var(--bg-blue);
}

.treatment-methods__accordion:active .treatment-methods__accordion-head-icon {
	transform: rotate(135deg);
}

.treatment-methods__accordion:hover .treatment-methods__accordion-head-text {
	color: var(--bg-blue);
}

.treatment-methods__accordion:hover .treatment-methods__accordion-head-icon {
	transform: rotate(135deg);
}


.treatment-methods__accordion-head-icon {
	min-width: 30px;
	transition: all .3s ease;
}

.treatment-methods__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.treatment-methods__accordion-body {
	padding: 30px 0px 0px 0px;
}

.treatment-methods__accordion-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--txt-black);
}

.treatment-methods__accordion--visible {
	padding: 30px 30px 44px 30px;
}

.treatment-methods__accordion--visible .treatment-methods__accordion-head-text {
	color: var(--txt-black);
}

.treatment-methods__accordion--visible .treatment-methods__accordion-head-icon {
	transform: rotate(0);
}

.treatment-methods__accordion--visible .treatment-methods__accordion-content {
	max-height: 100%;
}

.treatment-methods__accordion--visible .treatment-methods__accordion-text {
	opacity: 0;
	transition: all .3s ease;
}

.treatment-methods__accordion--visible:active .treatment-methods__accordion-text {
	opacity: 1;
}

.treatment-methods__accordion--visible:hover .treatment-methods__accordion-text {
	opacity: 1;
}


/* -------------------------reviews------------------------- */

.page__reviews {
	overflow: hidden;
}

.reviews__container {}

.reviews__inner {}

.reviews__head {}

.reviews__title {}

.page__reviews .reviews__link {
	margin: unset;
}

.reviews__content {
	display: flex;
	gap: 16px;
}

.reviews__card {
	border-radius: 16px;
	padding: 40px;
	background-color: #02B6D1;
	overflow: hidden;

	min-height: 520px;
	max-height: 520px;
	min-width: 400px;

	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
	justify-content: space-between;

	position: relative;
	z-index: 1;
}

.reviews__card-bg {
	position: absolute;
	top: 100px;
	right: 0;
	z-index: -1;
}

.reviews__card-line {
	position: absolute;
	bottom: 36px;
	left: 41px;
	z-index: -1;
}

.reviews__card-title {
	font-weight: 600;
	font-size: 24px;
	color: var(--bg-white);
}

.reviews__card-btn {}

.reviews__slider-inner {
	position: relative;
}

.reviews__slider {
	max-width: 816px;
	width: 100%;
	overflow: hidden;
}

.reviews__slider-line {}

.reviews__slide {
	border-radius: 16px;
	padding: 30px;
	background: var(--bg-light-blue);
	min-height: 520px;

	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
	cursor: pointer;

	transition: all .3s ease;
}

/* .reviews__slide--visible .reviews__slide-message {
	-webkit-line-clamp: unset;
} */

.reviews__slide-top {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.reviews__slide-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.reviews__slide-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.reviews__slide-name {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--txt-black);
}

.reviews__slide-date {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-grey-dark);
}

.reviews__slide-message {
	font-weight: 400;
	font-size: 16px;
	line-height: 131%;
	color: var(--txt-black);

	max-height: 294px;
	overflow: hidden;

	transition: all .3s ease;
}

.reviews__slide-bottom {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
}

.reviews__slide-bottom svg path {
	transform-origin: 50% 50%;
	transform-box: fill-box;
	transition: all .2s ease;
}

.reviews__slide:active .reviews__slide-bottom svg path {
	transform: rotate(135deg);
}

@media(hover:hover) {
	.reviews__slide:hover .reviews__slide-bottom svg path {
		transform: rotate(135deg);
	}

	.reviews__slide:hover .reviews__slide-bottom svg path {
		color: #005667;
	}}

.reviews__slide--visible .reviews__slide-bottom svg path {
	transform: rotate(-45deg) !important;
}

.reviews__slide-bottom-text {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: var(--accent-dark-green);

	transition: all .2s ease;
}

.reviews__slider-btn-next {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	right: -20px;
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.reviews__slider-btn-next:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.reviews__slider-btn-next:hover path {
		fill: var(--txt-grey-dark);
	}}

/* -------------------------licenses-documents------------------------- */

.page__licenses-documents {}

.licenses-documents__container {}

.licenses-documents__inner {}

.licenses-documents__head {}

.licenses-documents__title {}

.licenses-documents__content {
	border-radius: 16px;
	padding: 40px 70px;
	background: var(--bg-light-grey);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.licenses-documents__text {
	max-width: 400px;
	margin: 0px 0px 20px 0px;

	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--txt-black);
}

.licenses-documents__link {
	display: inline-flex;
}

.licenses-documents-bg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 50px;
	z-index: -1;
}

/* -------------------------clinic-gallery------------------------- */

.page__clinic-gallery {
	overflow: hidden;
}

.clinic-gallery__container {}

.clinic-gallery__inner {}

.clinic-gallery__head {}

.clinic-gallery__title {}

.clinic-gallery__link {}

.clinic-gallery__cards {}

.clinic-gallery__cards-wrapper {}

.clinic-gallery-cards-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 16px;
}

.clinic-gallery__card {
	overflow: hidden;
	border-radius: 16px;
}

.clinic-gallery__card-1 {
	grid-column: 1/5;
	grid-row: 1/3;
}

.clinic-gallery__card-img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;

	transition: all .2s ease;
}

.clinic-gallery__card:active .clinic-gallery__card-img {
	transform: scale(1.05);
}

@media(hover:hover) {
	.clinic-gallery__card:hover .clinic-gallery__card-img {
		transform: scale(1.05);
	}}

.clinic-gallery__card-2 {
	grid-column: 5/9;
	grid-row: 1/2;
}

.clinic-gallery__card-3 {
	grid-column: 5/9;
	grid-row: 2/3;
}

.clinic-gallery__card-4 {
	grid-column: 9/13;
	grid-row: 1/3;
}

.clinic-gallery__card-5 {
	grid-column: 1/7;
}

.clinic-gallery__card-6 {
	grid-column: 7/10;
}

.clinic-gallery__card-7 {
	grid-column: 10/13;
}

/* -------------------------blog------------------------- */

.page__blog {
	overflow: hidden;
}

.blog__container {}

.blog__inner {}

.blog__head {}

.blog__title {}

.blog__link {}

.blog__slider-inner {
	position: relative;
}

.blog__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.blog__slider-btn:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.blog__slider-btn:hover path {
		fill: var(--txt-grey-dark);
	}}

.blog__slider-btn-prev {
	left: -20px;
}

.blog__slider {
	width: 100%;
	overflow: hidden;
}

.swiper-blog {}

.blog__slider-line {}

.blog__slide {
	border-radius: 16px;
	overflow: hidden;
	height: unset;

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

.blog__slide-img {
	border-radius: 16px;
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .2s ease;
}

.blog__slide:active .blog__slide-img {
	transform: scale(1.1);
}

@media(hover:hover) {
	.blog__slide:hover .blog__slide-img {
		transform: scale(1.1);
	}}

.blog__slider-btn-next {
	right: -20px;
}

/* ------------------------our-centers------------------------- */

.page__our-centers {
	overflow: hidden;
}

.our-centers__container {}

.our-centers__inner {}

.our-centers__head {}

.our-centers__title {}

.our-centers__tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;

	margin: 0px 0px 40px 0px;
}

.our-centers__tab {
	border: 1px solid var(--bg-blue);
	border-radius: 4px;
	padding: 9px 13px 11px 13px;
	cursor: pointer;

	font-weight: 500;
	font-size: 16px;
	color: var(--bg-blue);

	transition: all .2s ease;
}

.our-centers__tab:active {
	background: var(--bg-mid-blue);
	border-color: var(--bg-mid-blue);
	color: var(--bg-white);
}

@media(hover:hover) {
	.our-centers__tab:hover {
		background: var(--bg-mid-blue);
		border-color: var(--bg-mid-blue);
		color: var(--bg-white);
	}}

.our-centers__tab--active {
	background: var(--bg-mid-blue);
	border-color: var(--bg-mid-blue);
	color: var(--bg-white);
}

.our-centers__item {
	display: none;
}

.our-centers__item--active {
	display: block;
	position: relative;
}

.our-centers__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.our-centers__slider-btn:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.our-centers__slider-btn:hover path {
		fill: var(--txt-grey-dark);
	}}

.our-centers__slider-btn-prev {
	left: -20px;
}

.our-centers__slider-btn-next {
	right: -20px;
}

.our-centers__slider {
	width: 100%;
	overflow: hidden;
}

.our-centers__slider-line {}

.our-centers__slide {
	border-radius: 16px;
	padding: 30px 30px 40px 30px;
	background: var(--bg-light-blue);

	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
	height: unset;
}

.our-centers__slide-top {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.our-centers__slide-title {}

.our-centers__slide-title-url{
	transition: all 0.4s ease;
}


.our-centers__slide-title-url:hover{
	color: #02b5d1;
}

.our-centers__slide-box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.our-centers__slide-text {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
}

.our-centers__slide-box-title {
	font-weight: 600;
	font-size: 16px;
	color: var(--txt-black);
}

.our-centers__slide-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.our-centers__slide-link {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);
}

.our-centers__slide-bottom {
	display: flex;
	gap: 8px;
}

.our-centers__slide-link-btn {
	border-radius: 4px;
	padding: 15px 20px 15px 24px;
	background: var(--bg-blue);

	width: 100%;
	max-height: 50px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	font-weight: 600;
	font-size: 16px;
	color: var(--bg-white);

	transition: all .2s ease;
}

.our-centers__slide-link-btn:hover {}

.our-centers__slide-link-btn:active {
	background-color: #048ba0;
}

@media(hover:hover) {
	.our-centers__slide-link-btn:hover {
		background-color: #048ba0;
		color: white;
	}}

.our-centers__slide-link-soc {
	min-width: 50px;
	transition: all .2s ease;
}

.our-centers__slide-link-soc:active {
	opacity: .7;
}

@media(hover:hover) {
	.our-centers__slide-link-soc:hover {
		opacity: .7;
	}}

/* -------------------------footer------------------------- */

.cl-footer {
	padding: 0px 0px 40px 0px;
}

.cl-footer__container {}

.cl-footer__inner {
	border-radius: 30px;
	padding: 40px 60px 12px 60px;
	background: var(--bg-light-grey);

	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 30px;
}

.cl-footer__top {}

.cl-footer__logo {}

.cl-footer__logo-img {}

@media(min-width:1921px) {

	.cl-footer__logo-img,
	.header__logo-img {
		width: 154px;
		height: auto;
	}}

.cl-footer__main {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
}

.cl-footer__column {}

.cl-footer__column-1 {
	max-width: 254px;
}

.cl-footer__column-tel {
	font-weight: 600;
	font-size: 20px;
	color: var(--txt-black);

	display: inline-block;
	margin: 0px 0px 8px 0px;

	transition: all .2s ease;
}

.cl-footer__column-tel:active {
	color: var(--accent-dark-green);
}

@media(hover:hover) {
	.cl-footer__column-tel:hover {
		color: var(--accent-dark-green);
	}}

.cl-footer__column-text {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	display: block;
	margin: 0px 0px 30px 0px;
}

.cl-footer__column-btn-link {}

.cl-footer__column-2 {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cl-footer__column-accordion {}

.cl-footer__column-accordion-head {}

.cl-footer__column-accordion-head-text {
	font-weight: 600;
	font-size: 16px;
	color: var(--txt-black);
}

.cl-footer__column-accordion-head-icon {
	display: none;
	min-width: 18px;

	transition: all .2s ease;
}

.accordion__item-head--show .cl-footer__column-accordion-head-icon {
	transform: rotate(135deg);
}

.cl-footer__column-accordion-content {}

.cl-footer__column-accordion-list {
	padding: 10px 0px 0px 0px;

	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: unset;
}

.cl-footer__column-accordion-item {}

.cl-footer__column-accordion-item-link {
	font-weight: 400;
	font-size: 16px;
	color: var(--txt-black);

	transition: all .2s ease;
}

.cl-footer__column-accordion-item-link:active {
	color: var(--bg-blue);
}

@media(hover:hover) {
	.cl-footer__column-accordion-item-link:hover {
		color: var(--bg-blue);
	}}

.cl-footer__column-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cl-footer__column-2-links {
	display: none;
}

.cl-footer__column-item {}

.cl-footer__column-item-link {
	font-weight: 600;
	font-size: 16px;
	color: var(--txt-black);

	transition: all .2s ease;
}

.cl-footer__column-item-link:active {
	color: var(--accent-dark-green);
}

@media(hover:hover) {
	.cl-footer__column-item-link:hover {
		color: var(--accent-dark-green);
	}}

.cl-footer__column-3 {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cl-footer__column-4 {
	max-width: 296px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cl-footer__column-5 {
	display: none;
}

.cl-footer__column-4-mob {
	display: none;
}

.social {}

.social__list {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.social__item {}

.social__item-link {
	transition: all .2s ease;
}

.social__item-link:active {
	opacity: .7;
}

@media(hover:hover) {
	.social__item-link:hover {
		opacity: .7;
	}}

.cl-footer__column-desc {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cl-footer__column-desc-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 110%;
	color: var(--txt-grey-dark);
}

.cl-footer__bottom {
	width: 100%;
	padding: 9.5px 0px 0px 0px;
}

.cl-footer__bottom-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.cl-footer__bottom-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 110%;
	color: var(--txt-grey-dark);
}

.cl-footer__bottom-item .cl-footer__bottom-item-link {
	transition: all .2s ease;
	color: var(--txt-grey-dark);
}

.cl-footer__bottom-item-link:active {
	color: var(--txt-black);
}

@media(hover:hover) {
	.cl-footer__bottom-item-link:hover {
		color: var(--txt-black);
	}}

.cl-footer__bottom-item-img {}

/* -------------------------modal------------------------- */

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 38px;

	background-color: rgb(36, 43, 51, .5);

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.modal--visible {
	opacity: 1;
	pointer-events: all;
}

.moda-review {}

.modal__window {
	border-radius: 16px;
	padding: 60px 50px;
	background: var(--bg-light-blue);

	max-width: 608px;
	width: 100%;
	max-height: 100%;
	overflow: auto;

	position: relative;
}

.modal__btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.modal__btn-close rect {
	transition: all .2s ease;
}

.modal__btn-close:active rect {
	fill: var(--bg-blue);
}

@media(hover:hover) {
	.modal__btn-close:hover rect {
		fill: var(--bg-blue);
	}}

.modal__title {
	margin: 0px 0px 40px 0px;
}

.modal__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;

	border-radius: 4px;
	padding: 14px 24px 16px 24px;
	margin: 0px 0px 24px 0px;
	background: var(--bg-white);
}

.modal__rating-icons {
	display: flex;
	gap: 4px;
}

.modal__rating-text {
	font-weight: 500;
	font-size: 16px;
	color: var(--accent-dark-green);
}

.modal__form {}

.modal__form-row {
	display: flex;
	gap: 16px;

	margin: 0px 0px 24px 0px;
}

.modal__form-label {
	width: 100%;
}

.modal__form-input {
	border-radius: 4px;
	padding: 13px 23px 15px 23px;
	border: 1px solid transparent;
	background: var(--bg-white);
	width: 100%;

	font-weight: 500;
	font-size: 16px;
	color: var(--txt-black);

	transition: all .2s ease;
}

.modal__form-input:active {
	border: 1px solid var(--accent-dark-green);
}

.modal__form-input:focus {
	border: 1px solid var(--accent-dark-green);
}

.modal__form-textarea:active {
	border: 1px solid var(--accent-dark-green);
}

.modal__form-textarea:focus {
	border: 1px solid var(--accent-dark-green);
}

@media(hover:hover) {
	.modal__form-input:hover {
		border: 1px solid var(--accent-dark-green);
	}

	.modal__form-textarea:hover {
		border: 1px solid var(--accent-dark-green);
	}}

.modal__form-input::placeholder {
	color: var(--txt-grey-light);
}

.modal__form-textarea {
	font-weight: 500;
	font-size: 16px;
	color: var(--txt-black);

	border-radius: 4px;
	padding: 14px 24px 16px 24px;
	margin: 0px 0px 24px 0px;
	min-height: 170px;
	width: 100%;
	resize: none;
}

.modal__form-textarea::placeholder {
	color: var(--txt-grey-light);
}

.modal__form-check {
	display: flex;
	gap: 10px;
	cursor: pointer;

	margin: 0px 0px 24px 0px;
}

.modal__form-checkbox {
	background: var(--bg-white);
}

.modal__form-check-text {
	font-weight: 400;
	font-size: 14px;
	color: var(--txt-grey-dark);
}

.modal__form-btn {
	border-radius: 4px;
	padding: 14px 20px 16px 24px;
	background: var(--bg-blue);

	font-weight: 600;
	font-size: 16px;
	color: var(--bg-white);

	transition: all .2s ease;
}

.modal__form-btn:active {
	background-color: #068ba0;
}

@media(hover:hover) {
	.modal__form-btn:hover {
		background-color: #068ba0;
	}}

.modal__window-elem {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* -------------------------modal-gallery------------------------- */

.modal-gallery {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: 20;
	padding: 40px;
	background-color: rgb(0, 0, 0, .5);
	backdrop-filter: blur(10px);

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.modal-gallery--visible {
	opacity: 1;
	pointer-events: all;
}

.modal-gallery__window {
	display: flex;
	align-items: center;
	gap: 20px;

	max-width: 1280px;
}

.modal-gallery__btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.modal-gallery__btn-close path {
	transition: all .2s ease;
}

.modal-gallery__btn-close:active rect {
	fill: var(--bg-blue);
}

@media(hover:hover) {
	.modal-gallery__btn-close:hover rect {
		fill: var(--bg-blue);
	}}

.modal-gallery__slider-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.modal-gallery__slider-btn {
	box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
	border-radius: 50%;
}

.modal-gallery__slider-btn path {
	transition: all .2s ease;
}

.modal-gallery__slider-btn:active path {
	fill: var(--txt-grey-dark);
}

@media(hover:hover) {
	.modal-gallery__slider-btn:hover path {
		fill: var(--txt-grey-dark);
	}}

.modal-gallery__slider-btn-prev {}

.modal-gallery__slider {
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
}

.swiper-modal-gallery {}

.modal-gallery__slider-line {}

.modal-gallery__slide {
	width: 100% !important;
	height: unset;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-gallery__slide-img {
	max-width: 100%;
}

.modal-gallery__slider-btn-next {}

/* -------------------------media------------------------- */

@media(max-width:1300px) {
	.reviews__slide {
		max-width: 400px;
	}

	.reviews__slider-btn-next {
		display: none;
	}

	.reviews__slider-inner {
		width: calc(100% - 392px);
	}}

@media(max-width:1240px) {

	/* header */

	.header .header__item:nth-child(5),
	.header .header__item:nth-child(6),
	.header .header__item:nth-child(7) {
		display: none;
	}

	.header {
		margin: 20px 0;
	}

	.header__inner {
		padding: 16px 20px;
	}

	section {
		margin: 0px 0px 60px 0px;
	}

	/* .preview */

	.preview__inner {
		padding: 40px;
	}

	.preview__content {
		max-width: unset;
	}

	.preview__title,
	.preview__subtitle {
		max-width: 460px;
	}

	.title-h1 {
		font-size: 26px;
	}

	.preview__subtitle {
		font-size: 18px;
		margin: 0px 0px 30px 0px;
	}

	.preview__subtitle p {
		font-size: 18px;
		margin: 0px 0px 30px 0px;
	}

	.preview-img {
		max-width: 658px;
		top: 106px;
		right: 44px;
	}

	.preview__list {
		margin: 0px 0px 30px 0px;
	}

	.preview-img-elem-2 {
		top: 191px;
		right: -19px;
		max-width: 108px;
	}

	.preview-img-elem-1 {
		bottom: 159px;
		left: -21px;
		max-width: 92px;
	}

	.preview__card-img {
		min-width: 24px;
	}

	.preview__card-img svg {
		width: 24px;
		height: 24px;
	}

	.preview__card {
		gap: 12px;
		padding: 16px;
	}

	.title-h4 {
		font-size: 18px;
	}

	.preview__card-list {
		gap: 16px;
	}

	.preview__card-desc {
		font-size: 14px;
	}

	.preview__cards {
		gap: 8px;
	}

	/* .we-treat */

	.title-h2 {
		font-size: 26px;
	}

	.head {
		margin: 0px 0px 30px 0px;
	}

	.we-treat__content {
		flex-direction: column;
	}

	.we-treat__card-big {
		max-width: unset;
		min-height: unset;
	}

	.we-treat__card-medium {
		max-width: unset;
		flex: 1 1 50%;
	}

	.we-treat__cards-column {
		max-width: unset;
		flex: 1 1 50%;
	}

	.we-treat__card-title br {
		display: none;
	}

	.we-treat__card-item-link br {
		display: none;
	}

	.we-treat__card-list {
		gap: 25px;
	}

	.we-treat__card-img-1 {
		width: 277px;
		right: 43px;
	}

	.we-treat__card-img-2 {
		right: 60px;
		bottom: 20px;
	}

	/* .consultation */

	.consultation__inner {
		padding: 40px;
		gap: 40px;
	}

	.consultation__right {
		gap: 32px;
	}

	/* .stock */


	.stock__card {
		padding: 24px;
		overflow: hidden;
	}

	.stock__card-2 {
		padding: 30px;
		gap: 22px;
	}

	.stock__card-1 {
		padding: 40px 40px 27px 40px;
	}

	.stock__card-1 .stock__card-title {
		margin: 0px 0px 16px 0px;
	}

	.stock__card-subtitle {
		margin: 0px 0px 17px 0px;
	}

	.stock__card-image {
		max-width: 240px;
		width: 100%;
	}

	.stock__card-1 .stock__card-title,
	.stock__card-2 .stock__card-title,
	.stock__card-3 .stock__card-title {
		font-size: 20px;
	}

	.stock__card-image-elem {
		max-width: 263px;
		right: -62px;
	}

	.stock__card-title-sp {
		font-size: 24px;
	}

	.stock__card-4 .stock__card-image {
		max-width: 105px;
	}

	/* .prices */

	.prices__body {
		flex-direction: column;
		gap: 15px;
	}

	.prices__sidebar {
		max-width: unset;
	}

	.prices__accrodions {
		width: 100%;
		max-width: unset;
	}

	.prices__sidebar-inner {
		position: relative;
		z-index: 2;
		top: 0;
	}

	.prices__sidebar-tabs {
		position: absolute;
		top: 90%;
		left: 50%;
		transform: translateX(-50%) translateY(-20px);
		width: calc(100% - 60px);
		z-index: 2;

		border-radius: 16px;
		padding: 30px;

		box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
		background: var(--bg-white);

		opacity: 0;
		pointer-events: none;
	}

	.dropdown-content--active.prices__sidebar-tabs {
		transform: translateX(-50%) translateY(0px);
		opacity: 1;
		pointer-events: all;
	}

	.prices__sidebar-dropdown {
		display: block;
	}

	.prices__sidebar-title {
		font-size: 20px;
		margin: 0px 0px 32px 0px;
	}

	.prices__sidebar-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;

		border-radius: 8px;
		padding: 16px 12px 18px 12px;
		background: var(--bg-light-blue);
		opacity: 0.8;
		cursor: pointer;
	}

	.prices__sidebar-head svg {
		min-width: 10px;
		pointer-events: none;
	}

	.prices__sidebar-head-text {
		font-weight: 400;
		font-size: 16px;
		color: var(--txt-black);

		pointer-events: none;
	}

	.prices__accrodion-text {
		font-size: 20px;
	}

	.prices__accrodion-row-right {
		max-width: 305px;
		width: 100%;
		justify-content: space-between;
	}

	/* .treatment-methods */

	.treatment-methods__box {
		grid-column: 1/-1;
	}

	.treatment-methods__content {
		grid-template-columns: repeat(2, 1fr);
	}

	/* reviews */

	.reviews__slider {
		padding: 0px 24px 0px 0px;
	}

	/* .licenses-documents */

	.licenses-documents__content {
		padding: 40px;
	}

	.licenses-documents-bg {
		top: 55%;
		right: 4px;
		max-width: 444px;
	}

	/* .our-centers */

	.our-centers__tabs {
		margin: 0px 0px 30px 0px;
	}

	.our-centers__slide-title {
		font-size: 20px;
	}

	/* .cl-footer */

	.cl-footer__inner {
		padding: 30px 40px 12px 40px;
	}

	.cl-footer__column-4 {
		display: none;
	}

	.cl-footer__column-4-mob {
		display: flex;
		flex-direction: column-reverse;
		margin: 30px 0px 0px 0px;
	}

	.cl-footer {
		padding: 0px 0px 20px 0px;
	}

	.cl-footer__bottom-item-link {
		white-space: nowrap;
	}

	/* burger */

	.burger-menu {
		display: block;
	}}

@media(max-width:960px) {
	.modal__window {
		max-width: 680px;
	}}

@media(max-width:955px) {
	.header__item:nth-child(4) {
		display: none;
	}}

@media(max-width:940px) {
	/* header */

	.preview-img-wrap {
		top: 127px;
		max-width: 285px;
	}

	.preview-img-wrap-hide{
		display: none;
	}

	.preview-img-wrap-mobile{
		display:block;
		max-width: 285px;
	}


	.container-bc {
		padding: 0 20px;
		width: unset;
	}

	.header {
		margin: 20px 0 18px 0;
	}

	/* .preview */

	.preview__inner {
		padding: 30px;
	}

	.preview__list {
		margin: 0px 0px 40px 0px;
	}

	.preview__title {
		max-width: unset;
		margin: 0px 0px 40px 0px;

	}

	.preview__title-hide{
		margin: 0px !important;
	}

	.preview__subtitle {
		max-width: 314px;
	}

	.preview__card {
		flex-direction: column;
		gap: 16px;
	}

	.preview__card-list {
		gap: 12px;
	}

	.preview-img {
		max-width: 571px;
		top: 205px;
		right: 70px;
	}

	.preview-img-elem-2 {
		top: 265px;
		right: -19px;
		max-width: 96px;
		transform: rotate(-14deg);
	}

	.preview-img-elem-1 {
		bottom: 206px;
		left: -18px;
		max-width: 79px;
	}

	/* .we-treat */

	.we-treat__card {
		padding: 30px;
	}

	.we-treat__card-title {
		margin: 0px 0px 30px 0px;
	}

	.we-treat__card-list {
		max-width: 470px;
	}

	.we-treat__card-img-1 {
		max-width: 214px;
		width: 100%;
		right: 35px;
		bottom: 37px;
	}

	.we-treat__card-img-2 {
		right: 37px;
		bottom: 14px;
		max-width: 156px;
	}

	/* .consultation */

	.consultation__inner {
		padding: 30px;
		gap: 30px;
	}

	.consultation__left {
		max-width: 200px;
	}

	.consultation-social-line {
		position: absolute;
		top: -33px;
		right: -7px;
		z-index: -1;
		transform: rotate(-26deg);
	}

	.consultation__form-row {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.consultation__form-btn {
		margin: 16px 0px 0px 0px;
		max-width: 253px;
	}

	/* .stock */

	.stock__cards {
		grid-template-columns: repeat(6, 1fr);
	}

	.stock__card-2 {
		grid-column: 1/-1;
		gap: 30px;
	}

	.stock__card-1 {
		grid-column: 1/5;
		grid-row: 2/4;
	}

	.stock__card-3,
	.stock__card-4 {
		grid-column: 5/7;
	}

	.stock__card-4 {
		grid-row: 3/4;
	}

	.stock__card-2 .stock__card-title {
		max-width: 320px;
	}

	.stock__card-image-elem {
		max-width: 303px;
		right: 5px;
		bottom: 9px;
	}

	.stock__card-1 {
		padding: 40px;
	}

	.stock__card-subtitle {
		margin: 0px 0px 21px 0px;
	}

	/* .prices */

	.prices__content {
		padding: 30px;
	}

	.prices__sidebar-inner {
		padding: 24px;
	}

	.prices__sidebar-title {
		margin: 0px 0px 25px 0px;
	}

	.prices__accrodion-head {
		padding: 24px;
	}

	.prices__accrodion-body {
		padding: 0 24px 24px 24px;
	}

	.prices__accrodion-row-left {
		flex-direction: column;
		gap: 8px;
		align-items: start;
	}

	.prices__accrodion-row-date {
		font-size: 12px;
	}

	.prices__accrodion-row-right {
		max-width: 297px;
	}

	.prices__sidebar-tabs {
		width: calc(100% - 50px);
	}

	/* .our-doctors */

	.our-doctors__slide {
		padding: 24px 24px 30px 24px;
	}

	.our-doctors__name {
		font-size: 18px;
	}

	.our-doctors__desc {
		font-size: 14px;
	}

	.our-doctors__slide-elem-1 {
		right: 46px;
		bottom: -8px;
		max-width: 59px;
	}

	.our-doctors__slide-elem-2 {
		right: 1px;
		max-width: 51px;
		top: 107px;
	}

	.our-doctors__slide-elem-3 {
		bottom: -9px;
		left: -5px;
	}

	/* .rating */

	.rating__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.rating__card:nth-child(1) {
		grid-column: 1/-1;
	}

	/* .treatment-methods */

	.treatment-methods__content {
		padding: 30px;
	}

	.treatment-methods__accordion-body {
		padding: 20px 0px 0px 0px;
	}

	/* .reviews */

	.reviews__card {
		max-width: 340px;
		min-width: 340px;
		min-height: 480px;
		max-height: 480px;
	}

	.reviews__slide {
		max-width: 340px;
		min-height: 480px;
	}

	.reviews__slider-inner {
		width: calc(100% - 328px);
	}

	.reviews__content {
		gap: 8px;
	}

	.reviews__slide-message {
		-webkit-line-clamp: 12;
	}

	.reviews__card {
		padding: 30px;
	}

	.reviews__card-title {
		font-size: 22px;
	}

	.reviews__card-bg {
		max-width: 167px;
	}

	.reviews__card-line {
		bottom: 26px;
		left: 22px;
	}

	.reviews__slide {
		padding: 30px 24px;
	}

	.reviews__slider {
		padding: 0px 20px 0px 0px;
	}

	.reviews__slide-message {
		max-height: 250px;
	}

	/* .licenses-documents */

	.licenses-documents__text {
		max-width: 320px;
	}

	.licenses-documents-bg {
		top: 49%;
		right: -2px;
		max-width: 356px;
	}

	/* .clinic-gallery */

	.clinic-gallery__card {
		max-height: 400px;
		width: unset;
		height: unset;
	}

	.clinic-gallery__card-1 {
		max-width: 290px;
	}

	.clinic-gallery__card-2 {
		max-width: 580px;
		width: 100%;
	}

	.clinic-gallery__card-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.clinic-gallery__card-4 {
		max-width: 290px;
	}

	/* cl-footer */

	.cl-footer__bottom-item-link {
		white-space: unset;
	}

	.cl-footer__inner {
		padding: 24px 30px 12px 30px;
	}

	.cl-footer__column-2,
	.cl-footer__column-3 {
		max-width: 176px;
		width: 100%;
	}

	/* burger */

	.burger-menu__item-hide {
		display: block;
	}}

@media(max-width:775px) {
	.header__tel-text {
		display: none;
	}

	.header__tel-icon {
		display: block;
	}

	.preview-img-wrap {
		top: 180px;
		max-width: 300px;
	}

	.preview-img-wrap-mobile{
		max-width: 300px;
	}}

@media(max-width:768px) {
	.modal__window {
		max-width: 600px;
	}}

@media(max-width:760px) {
	/* header */

	.header__logo-img {
		max-width: 91.5px;
	}

	.header__right {
		gap: 8px;
	}

	.header__inner {
		padding: 12px 16px;
	}

	.container-bc {
		padding: 0 24px;
		width: unset;
	}

	.header {
		margin: 10px 0;
	}

	.header__list-sub-box {
		left: -40px;
	}

	/* .preview */

	.preview__inner {
		padding: 24px;
	}

	.preview__item:nth-child(2),
	.preview__item:nth-child(4) {
		display: none;
	}

	.preview__list {
		margin: 0px 0px 24px 0px;
	}

	.preview__title {
		font-size: 22px;
		margin: 0px 0px 370px 0px;
	}

	.preview-img {
		padding: unset;
		max-width: 416px;
		width: 100%;
		right: 4px;
		top: 130px;
		transform: rotate(9deg);
	}

	.preview__subtitle {
		font-size: 16px;
		max-width: unset;
		margin: 0px 0px 26px 0px;
	}

	.preview__subtitle p {
		font-size: 16px;
		max-width: unset;
		margin: 0px 0px 26px 0px;
	}

	.preview__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.preview__card:nth-child(2) {
		grid-column: 1/-1;
		grid-row: 1/2;
	}

	.preview__content {
		margin: 0px 0px 40px 0px;
	}

	.preview__card-img {
		min-width: 20px;
	}

	.preview__card-img svg {
		width: 20px;
		height: 20px;
	}

	.preview__card-name {
		font-size: 16px;
	}

	.preview-img-elem-2 {
		top: 387px;
		right: -20px;
		transform: unset;
	}

	.preview-img-elem-1 {
		bottom: 313px;
	}

	.preview__card {
		gap: 13px;
	}

	/* .we-treat */

	.we-treat__cards {
		flex-direction: column;
	}

	.we-treat__card-big {
		min-height: 500px;
	}

	.we-treat__card-title {
		font-size: 18px;
	}

	.we-treat__card-img-1 {
		right: 27px;
		bottom: 27px;
	}

	.we-treat__card-medium {
		min-height: 380px;
	}

	.we-treat__card-img-2 {
		right: 51px;
		bottom: 20px;
		max-width: 131px;
	}

	/* .consultation */

	.consultation__inner {
		flex-direction: column;
		border-radius: 24px;
	}

	.consultation__item {
		margin: 0px 0px 24px 0px;
	}

	.consultation__subtitle {
		max-width: unset;
	}

	.consultation__left {
		max-width: unset;
	}

	.consultation-social-line {
		top: -13px;
		right: auto;
		left: 94px;
		transform: rotate(-10deg);
	}

	.consultation__form-btn {
		max-width: unset;
	}

	/* .stock */

	.stock__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.stock__card-1 {
		grid-column: 1/-1;
		grid-row: 1/2;
	}

	.stock__card-2 {
		grid-row: 2/3;
	}

	.stock__card-3 {
		grid-row: unset;
		grid-column: 1/2;
	}

	.stock__card-4 {
		grid-column: 2/3;
	}

	.stock__card-1 {
		padding: 30px;
	}

	.stock__card-image {
		max-width: 216px;
	}

	.stock__card-2 .stock__card-title {
		max-width: 240px;
	}

	.stock__card-image-elem {
		max-width: 261px;
		right: -75px;
		bottom: 2px;
	}

	.stock__card-head {
		gap: 8px;
	}

	.stock__card-3 {
		gap: 33px;
	}

	/* .prices */

	.prices__accrodion-row {
		flex-direction: column;
		align-items: start;
		padding: 0px 0px 18px 0px;
	}

	.prices__accrodion-row-btn {
		order: 3;
	}

	.prices__accrodion-row-time {
		order: 2;
	}

	.prices__accrodion-row-right {
		max-width: unset;
	}

	.prices__accrodion-row-name {
		max-width: unset;
	}

	.prices__accrodion-row-name br {
		display: none;
	}

	.prices__accrodion-rows {
		gap: 20px;
		margin: 0px 0px 24px 0px;
	}

	/* .our-doctors */

	.our-doctors__slide {
		max-width: 232px;
	}

	.our-doctors__slider {
		overflow: visible;
	}

	.our-doctors__slider-btn {
		display: none;
	}

	/* .rating */

	.rating__cards {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	/* .video-reviews */

	.video-reviews__slider-btn {
		display: none;
	}

	.video-reviews__slide {
		max-width: 320px;
	}

	/* .treatment-methods */

	.treatment-methods__content {
		display: flex;
		flex-direction: column;
	}

	/* .reviews */

	.reviews__content {
		flex-direction: column;
	}

	.reviews__slider-inner {
		width: 100%;
	}

	.reviews__slider {
		overflow: visible;
	}

	.reviews__card {
		max-width: unset;
		min-width: unset;
		min-height: 290px;
		max-height: 290px;
	}

	.reviews__card-bg {
		top: 60px;
		right: -3px;
	}

	.reviews__card-line {
		bottom: 33px;
		left: 31px;
	}

	.reviews__slider {
		padding: 0;
	}

	/* .licenses-documents */

	.licenses-documents__content {
		padding: 116px 40px 40px 40px;
	}

	.licenses-documents-bg {
		top: -30%;
		right: 1px;
		max-width: 460px;
	}

	.licenses-documents__link {
		width: 100%;
	}

	.licenses-documents__text {
		max-width: unset;
	}

	/* .clinic-gallery */

	.clinic-gallery__card {
		max-height: 350px;
	}

	.clinic-gallery__card-1 {
		max-width: 230px;
	}

	.clinic-gallery__card-3 {
		max-width: 420px;
	}

	.clinic-gallery__card-4,
	.clinic-gallery__card-6,
	.clinic-gallery__card-7 {
		max-width: 250px;
	}

	.clinic-gallery__card-5 {
		max-width: 420px;
	}

	/* .blog */

	.blog__slider-btn {
		display: none;
	}

	.blog__slide {
		max-width: 232px;
	}

	.blog__slider {
		overflow: visible;
	}

	/* .our-centers */

	.our-centers__slider-btn {
		display: none;
	}

	.our-centers__slide {
		max-width: 320px;
	}

	.our-centers__slider {
		overflow: visible;
	}

	/* .cl-footer */

	.cl-footer__main {
		flex-wrap: wrap;
		gap: 30px 16px;
	}

	.cl-footer__column-1 {
		max-width: unset;
		width: 100%;

		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}

	.cl-footer__column-btn-link {
		grid-column: 1/-1;
	}

	.cl-footer__column-text {
		margin: 0;
	}

	.cl-footer__column-1-box {
		grid-column: 2/3;
	}

	.cl-footer__column-4-mob {
		margin: 0;
		grid-column: 1/2;
		grid-row: 1/2;
		align-items: start;
		justify-content: start;
	}


	.cl-footer__column-2,
	.cl-footer__column-3 {
		max-width: unset;
		width: unset;
		flex: 1 1 44%;
	}

	.cl-footer__column-desc {
		display: none;
	}

	.cl-footer__bottom-item-link {
		display: none;
	}

	.cl-footer__column-2-links {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin: 19px 0px 0px 0px;
	}

	.cl-footer__column-2-link {
		font-weight: 400;
		font-size: 14px;
		line-height: 110%;
		color: var(--txt-grey-dark);
	}

	.cl-footer__column-5 {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.cl-footer__column-5 .cl-footer__column-2-links {
		display: none;
	}

	.cl-footer__column-5 .cl-footer__column-desc {
		display: flex;
	}

	/* burger */

	.burger-menu__window {
		padding: 10px 24px 40px 24px;
	}

	.burger-menu__item-hide-480 {
		display: block;
	}

	.burger-menu__logo-img {
		max-width: 91.5px;
	}

	.burger-menu__head {
		padding: 12px 16px;
	}

	.preview__links {
		gap: 10px;
		width: 100%;
	}

	.preview__links .preview__link-btn.btn-main {
		padding-left: 14px;
		padding-right: 14px;
		min-width: unset;
		width: auto;
		flex-basis: auto;
	}

	.preview__links .preview__link-btn.preview__link-btn--extra {
		padding-left: 12px;
		padding-right: 12px;
		min-width: 0;
		width: auto;
		flex: 0 1 auto;
		white-space: nowrap;
	}}

@media(max-width:510px) {
	.preview-img {
		top: 192px;
	}}

@media(max-width:650px) {

	.header .header__item:nth-child(2),
	.header .header__item:nth-child(3) {
		display: none;
	}


	.modal__window {
		max-width: unset;
		padding: 50px 40px 40px 40px;
	}

	.modal {
		padding: 24px;
	}

	.modal__window-elem {
		display: none;
	}

	.modal__form-btn {
		width: 100%;
	}

	.modal__title {
		margin: 0px 0px 30px 0px;
	}

	.modal__btn-close {
		top: 10px;
		right: 10px;
	}

	.modal__rating {
		margin: 0px 0px 20px 0px;
	}

	.modal__form-row {
		flex-direction: column;
		gap: 8px;
		margin: 0px 0px 20px 0px;
	}

	.modal__form-textarea {
		margin: 0px 0px 16px 0px;
	}

	.modal__form-check {
		margin: 0px 0px 16px 0px;
	}


	.modal-gallery {
		padding: 20px;
	}

	.modal-gallery__slider-btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.modal-gallery__slider-btn-prev {
		left: 10px;
	}

	.modal-gallery__slider-btn-next {
		right: 10px;
	}}

@media(max-width:450px) {
	.preview-img-wrap {
		top: 180px;
		max-width: 224px;
	}

	.preview-img-wrap-mobile{
		max-width: 224px;
	}


	/* header */
	.header .header__item {
		display: none;
	}

	.container-bc {
		padding: 0 22px;
		width: unset;
	}

	section {
		margin: 0px 0px 50px 0px;
	}

	.title-h2 {
		font-size: 22px;
	}

	.head {
		margin: 0px 0px 24px 0px;
	}

	/* .preview */

	.preview__inner {
		padding: 24px 20px;
	}

	.preview__list {
		gap: 4px;
		margin: 0px 0px 20px 0px;
	}

	.preview__title {
		font-size: 18px;
		margin: 0px 0px 268px 0px;
	}

	.preview-img {
		max-width: 300px;
	}

	.preview__subtitle {
		font-size: 14px;
		margin: 0px 0px 16px 0px;
	}

	.preview__subtitle p {
		font-size: 14px;
		margin: 0px 0px 16px 0px;
	}

	.preview__link-btn-text {
		display: none;
	}

	.preview__link-btn-text-mob {
		display: block;
	}

	.preview__cards {
		display: none;
	}

	.preview__content {
		margin: 0;
	}

	.preview-img-elem-1 {
		display: none;
	}

	.preview-img-elem-2 {
		top: 313px;
		right: -24px;
		max-width: 67px;
	}

	.btn-border {
		border-radius: 4px;
		padding: 9px 11px 11px 11px;
		font-size: 14px;
	}

	/* .we-treat */

	.we-treat__card-big {
		padding: 24px;
		min-height: 480px;
	}

	.we-treat__card-title {
		margin: 0px 0px 25px 0px;
	}

	.we-treat__card-img-1 {
		right: 15px;
		bottom: 24px;
		max-width: 140px;
	}

	.we-treat__content,
	.we-treat__cards,
	.we-treat__cards-column {
		gap: 8px;
	}

	.we-treat__card {
		padding: 24px;
		border-radius: 16px;
	}

	.we-treat__card-img-1 {
		right: 15px;
		bottom: 24px;
		max-width: 140px;
		margin-bottom: 0px;
	}

	/* .consultation */

	.consultation__inner {
		padding: 24px;
		border-radius: 16px;
	}

	.consultation-social-line {
		top: -14px;
		right: 76px;
		transform: rotate(-14deg);
		max-width: 93px;
	}

	/* .stock */

	.stock__card {
		padding: 24px;
		border-radius: 16px;
	}

	.stock__card-1 {
		padding: 24px 24px 17px 24px;
	}

	.stock__cards {
		gap: 8px;
	}

	.stock__card-2 {
		min-height: 460px;
		justify-content: start;
	}

	.stock__card-image {
		max-width: 190px;
	}

	.stock__card-image-elem {
		max-width: 304px;
		right: -8px;
		bottom: 0px;
	}

	.stock__card-3,
	.stock__card-4 {
		grid-column: 1/-1;
	}

	.stock__card-3 {
		grid-row: 3/4;
		min-height: 250px;
	}

	.stock__card-4 {
		grid-row: 4/5;
		min-height: 250px;
		padding: 20px 20px 29px 20px;
	}

	.stock__card-4 .stock__card-image {
		max-width: 150px;
	}

	/* .prices */

	.prices__content {
		padding: 16px;
		border-radius: 16px;
	}

	.prices__search-label {
		padding: 14px 12px 16px 16px;
		gap: 8px;
	}

	.prices__search-icon {
		padding: 0px 8px 0px 0px;
	}

	.prices__search {
		margin: 0px 0px 16px 0px;
	}

	.prices__sidebar-inner {
		padding: 16px;
		border-radius: 16px;
	}

	.prices__body {
		gap: 12px;
	}

	.prices__accrodions {
		gap: 12px;
	}

	.prices__accrodion-row-right {
		flex-wrap: wrap;
	}

	.prices__accrodion-row-btn {
		width: 100%;
		font-size: 16px;
	}

	.prices__accrodion-head {
		padding: 24px 20px;
	}

	.prices__accrodion-body {
		padding: 0 20px 24px 20px;
	}

	.prices__accrodion-text {
		font-size: 18px;
	}

	.prices__sidebar-tabs {
		border-radius: 8px;
		padding: 12px 16px;
		top: 95%;
		width: calc(100% - 32px);
	}

	.prices__sidebar-tab {
		padding: 10px 12px;
	}

	/* .rating */

	.rating__card {
		border-radius: 16px;
		padding: 24px;
	}

	.video-reviews__slide {
		max-width: 270px;
	}

	/* .treatment-methods */

	.treatment-methods__content {
		padding: 16px;
		border-radius: 16px;
		gap: 8px;
	}

	.treatment-methods__accordion {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.treatment-methods__accordion-head-text {
		font-size: 18px;
	}

	.treatment-methods__box {
		gap: 8px;
	}

	/* .reviews */

	.reviews__card-title {
		font-size: 20px;
	}

	.reviews__card-btn {
		width: 100%;
	}

	.reviews__card-bg {
		max-width: 130px;
	}

	.reviews__card-line {
		bottom: 40px;
		left: 29px;
		max-width: 138px;
		transform: rotate(-6deg);
	}

	.reviews__slide-rating svg {
		width: 16px;
		height: 16px;
	}

	.reviews__slide {
		padding: 24px 20px;
		border-radius: 16px;
		max-width: 300px;
		min-height: 460px;
		gap: 20px;
	}

	.reviews__slide-name,
	.reviews__slide-date {
		font-size: 14px;
	}

	.reviews__slide-message {
		font-size: 14px;
		line-height: 128%;
		-webkit-line-clamp: 15;
	}

	/* .licenses-documents */

	.licenses-documents__content {
		padding: 116px 24px 30px 24px;
	}

	.licenses-documents-bg {
		top: -11%;
		right: 1px;
		max-width: 328px;
	}

	/* .clinic-gallery */

	.clinic-gallery__card {
		max-height: 290px;
	}

	.clinic-gallery__card-1 {
		max-width: 210px;
	}

	.clinic-gallery__card-2,
	.clinic-gallery__card-3 {
		max-width: 300px;
	}

	.clinic-gallery__card-4,
	.clinic-gallery__card-5,
	.clinic-gallery__card-6,
	.clinic-gallery__card-7 {
		max-width: 210px;
	}

	/* .our-centers */

	.our-centers__tab {
		font-size: 14px;
		padding: 9px 11px 10px 11px;
	}

	.our-centers__tabs {
		margin: 0px 0px 24px 0px;
	}

	.our-centers__slide {
		border-radius: 16px;
		padding: 24px 24px 30px 24px;
		max-width: 300px;
	}

	.our-centers__slide-title {
		font-size: 18px;
	}

	/* .cl-footer */

	.cl-footer__column-1 {
		display: flex;
		flex-direction: column;
	}

	.cl-footer__column-btn-link {
		order: 3;
	}

	.cl-footer__column-1-box {
		order: 2;
	}

	.cl-footer__inner {
		padding: 24px 24px 12px 24px;
		gap: 24px;
	}

	.cl-footer__column-accordion-content {
		max-height: 0;
		overflow: hidden;
		transition: all .3s ease;
	}

	.cl-footer__column-2 {
		gap: 20px;
	}

	.cl-footer__column-list {
		gap: 20px;
	}

	.cl-footer__column-2-links {
		display: none;
	}

	.cl-footer__column-2,
	.cl-footer__column-3 {
		flex: 1 1 100%;
	}

	.cl-footer__column-5 .cl-footer__column-2-links {
		display: flex;
	}

	.cl-footer__column-2-links {
		margin: 0;
	}

	.cl-footer__bottom-list {
		gap: 10px;
	}

	.cl-footer__column-accordion-head-icon {
		display: block;
	}

	.cl-footer__column-accordion-head {
		display: flex;
		align-items: center;
		gap: 8px;
	}





	.modal {
		padding: 29px 22px;
	}

	.modal__window {
		padding: 50px 24px 30px 24px;
	}}

/* Стили для cf7 */
.wpcf7-form .modal__form-row {
	display: flex;
	gap: 16px;
	margin: 0 0 24px 0;
}

.wpcf7-form .modal__form-row>p {
	display: flex;
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.wpcf7-form .modal__form-row .wpcf7-form-control-wrap {
	width: 100%;
	display: block;
}

.wpcf7-form .modal__form-row .wpcf7-form-control {
	width: 100%;
	min-width: 0;
	margin: 0;
}

.wpcf7-form .modal__form-input,
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel {
	border-radius: 4px;
	padding: 13px 23px 15px 23px;
	border: 1px solid transparent;
	background: var(--bg-white, #fff);
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	color: var(--txt-black, #222);
	transition: all .2s ease;
	box-sizing: border-box;
	margin: 0;
}

.wpcf7-form .modal__form-textarea,
.wpcf7-form .wpcf7-textarea {
	font-weight: 500;
	font-size: 16px;
	color: var(--txt-black, #222);
	border-radius: 4px;
	padding: 14px 24px 16px 24px;
	margin: 0 0 24px 0;
	max-height: 120px;
	width: 100%;
	resize: none;
	box-sizing: border-box;
}

.wpcf7-form .modal__form-check,
.wpcf7-form .wpcf7-form-control.wpcf7-checkbox,
.wpcf7-form .wpcf7-list-item {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 24px 0;
	font-size: 14px;
	color: var(--txt-grey-dark, #666);
	background: none;
	border: none;
}

.wpcf7-form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
	font-size: 14px;
	color: var(--txt-grey-dark, #666);
	margin: 0;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form .checkbox {
	appearance: none;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background: var(--bg-white);
	border-radius: 4px;
	cursor: pointer;
	border: none;
	margin: 2px 0 0 0;
	position: relative;
	transition: all .2s ease;
	outline: none;
	box-shadow: none;
	display: inline-block;
}

.wpcf7-form input[type="checkbox"]:checked {
	background-image: url("/wp-content/themes/wp19/assets/img/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.wpcf7-form .wpcf7-list-item-label,
.wpcf7-form .modal__form-check-text {
	font-weight: 400;
	font-size: 14px;
	color: var(--txt-grey-dark, #666);
	user-select: none;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.wpcf7-form .modal__form-btn,
.wpcf7-form input[type="submit"].modal__form-btn,
.wpcf7-form input[type="submit"] {
	border-radius: 4px;
	padding: 14px 20px 16px 24px;
	background: var(--bg-blue, #01687B);
	font-weight: 600;
	font-size: 16px;
	color: var(--bg-white, #fff);
	transition: all .2s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
	margin: 0;
}

.wpcf7-form input[type="submit"] {
	border-radius: 4px;
	background: var(--bg-blue, #01687B);
	color: var(--bg-white, #fff);
	font-weight: 600;
	font-size: 16px;
	padding: 14px 20px 16px 24px;
}

.wpcf7-form .wpcf7-response-output[aria-hidden="true"] {
	display: none;
}

.wpcf7-form br {
	display: none;
}

@media (max-width: 600px) {

	.wpcf7-form .modal__form-row,
	.wpcf7-form .modal__form-row>p {
		flex-direction: column;
		gap: 12px;
	}}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid {
	border: 1.2px solid #fa5252 !important;
	box-shadow:
		0 0 2px #fa5252,
		0 0 4px 1.5px rgba(250, 82, 82, 0.4),
		0 0 10px 3px rgba(250, 82, 82, 0.18);
	outline: none;
	transition: border 0.22s, box-shadow 0.22s;
	background-clip: padding-box;
}

.wpcf7-form .consultation__form-label-checkbox.wpcf7-not-valid {
	border: 1.2px solid #fa5252;
	box-shadow:
		0 0 2px #fa5252,
		0 0 4px 1.5px rgba(250, 82, 82, 0.4),
		0 0 10px 3px rgba(250, 82, 82, 0.18);
	border-radius: 4px;
	display: inline-block;
	transition: border 0.22s, box-shadow 0.22s;
	background-clip: padding-box;
}

.wpcf7-form .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
	display: none !important;
}

.blog__slide {
	position: relative;
}

.vk-guard {
	position: relative;
	display: block;
}

.vk-guard iframe {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 9/16;
}

.vk-guard__overlay {
	position: absolute;
	inset: 0;
	z-index: 5;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	touch-action: pan-y;
}

.vk-guard__swipe {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 56px;
	z-index: 6;
	background: transparent;
	cursor: grab;
	touch-action: pan-y;
}

.vk-guard__swipe--left {
	left: 0;
}

.vk-guard__swipe--right {
	right: 0;
}

.vk-guard.is-playing .vk-guard__overlay {
	display: none;
}

.video-reviews__slide {
	position: relative;
}

.video-review-iframe-wrapper {
	position: relative;
	padding-bottom: 177%;
	height: 0;
	overflow: hidden;
	background: #000;
}

.video-review-iframe-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

.embed-16x9 {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.embed-16x9 iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.iframe-guard__overlay {
	position: absolute;
	inset: 0;
	display: block;
	cursor: pointer;
	background: rgba(0, 0, 0, 0);
}

.iframe-guard.is-playing .iframe-guard__overlay {
	display: none;
}

.iframe-guard__overlay::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 68px;
	height: 48px;
	transform: translate(-50%, -50%);
	background:
		radial-gradient(transparent 22px, rgba(0, 0, 0, .35) 23px) center/100% 100% no-repeat;
}

.iframe-guard__overlay::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-42%, -50%);
	width: 0;
	height: 0;
	border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

.embed-16x9 {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.embed-16x9 iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.iframe-guard__overlay {
	position: absolute;
	inset: 0;
	display: block;
	cursor: pointer;
	background: rgba(0, 0, 0, 0);
}

.iframe-guard.is-playing .iframe-guard__overlay {
	display: none;
}

.iframe-guard__overlay::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 68px;
	height: 48px;
	transform: translate(-50%, -50%);
	background:
		radial-gradient(transparent 22px, rgba(0, 0, 0, .35) 23px) center/100% 100% no-repeat;
}

.iframe-guard__overlay::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-42%, -50%);
	width: 0;
	height: 0;
	border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

.embed-16x9 {
	position: relative;
	width: 100%;
	background: #000;
	overflow: hidden;
}

@supports (aspect-ratio: 16 / 9) {
	.embed-16x9 {
		aspect-ratio: 16/9;
	}}

@supports not (aspect-ratio: 16 / 9) {
	.embed-16x9::before {
		content: "";
		display: block;
		padding-top: 56.25%;
	}}

.embed-16x9>iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.iframe-guard__overlay {
	position: absolute;
	inset: 0;
	display: block;
	background: transparent;
	cursor: pointer;
	z-index: 5;
}

.iframe-guard.is-playing .iframe-guard__overlay {
	display: none;
}

.modal__form-label-check>p {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0;
}

.modal__form-label-check .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
}

.modal__form-label-check input[type="checkbox"] {
	margin: 0.25em 0 0 0;
}

.modal__form-label-check .wpcf7-list-item-label {
	line-height: 1.4;
}

.modal__form-label-check .wpcf7-not-valid-tip {
	order: 2;
	flex-basis: 100%;
	margin: 6px 0 0 0;
}

.modal__form-label-check-text {
	font-weight: 400;
	font-size: 14px;
	color: var(--txt-grey-dark);
}

.modal__form-label-check {
	display: flex;
	gap: 10px;
	cursor: pointer;
	margin: 0px 0px 24px 0px;
}

.consultation__form-label-check .wpcf7-list-item-label { display: none; }

.page__courses {}

.courses__container {}

.courses__inner {}

.courses__head {}

.courses__title {}

.courses__link {}

.courses__slider-body {
    position: relative;
}

.courses__slider {
    width: 100%;
    overflow: hidden;
}

.courses__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
    border-radius: 50%;
    z-index: 2;
}

.courses__slider-btn:active svg path {
    fill: var(--txt-grey-dark);
}

@media(hover:hover) {
    .courses__slider-btn:hover svg path {
        fill: var(--txt-grey-dark);
    }}

.courses__slider-btn-prev {
    left: -20px;
}

.courses__slider-btn-next {
    right: -20px;
}

.courses__slider-line {}

.courses__slide {
    border-radius: 16px;
    padding: 30px;
    background: var(--bg-light-grey);
    height: unset;
    position: relative;
    z-index: 1;

    display: flex;
    gap: 24px;

    transition: all .2s ease;
}

.courses__slide:active {
    background: #bcf4ff;
}

@media(hover:hover) {
    .courses__slide:hover {
        background: #bcf4ff;
    }}

.courses__slide-elem {
    position: absolute;
    z-index: -1;
}

.courses__slide-elem-1 {
    bottom: 0;
    left: 40px;
}

.courses__slide-elem-2 {
    bottom: 0;
    left: 240px;
}

.courses__slide-img {
    max-width: 212px;
    width: 100%;
    min-width: 212px;
    position: relative;
}

.courses__slide-image {
    width: 100%;
    border-radius: 16px;
}

.courses__slide-session {
    font-weight: 400;
    font-size: 14px;
    color: var(--bg-white);

    border-radius: 100px;
    padding: 4px 10px 6px;
    background: var(--bg-blue);

    position: absolute;
    top: 211px;
    right: -45px;
}

.courses__slide-session-2 {
    top: 29px;
    left: -17px;
    bottom: auto;
    right: auto;
}

.courses__slide-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: end;
}

.courses__slide-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.courses__slide-name {
    font-weight: 600;
    font-size: 20px;
    color: var(--txt-black);
}

.courses__slide-name span {
    color: var(--bg-blue);
}

.courses__slide-desc {
    font-weight: 500;
    font-size: 16px;
    color: var(--txt-black);
    line-height: 126%;
}

.courses__slide-icon {
    border: 2px solid var(--accent-dark-green);
    border-radius: 8px;
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .2s ease;
}

.courses__slide-icon svg {
    transition: all .2s ease;
}

.courses__slide-icon:active svg {
    transform: rotate(45deg);
}

.courses__slide-icon:active svg path {
    fill: var(--bg-blue);
}

.courses__slide-icon:active {
    border-color: var(--bg-blue);
}

@media(hover:hover) {
    .courses__slide-icon:hover svg {
        transform: rotate(45deg);
    }

    .courses__slide-icon:hover svg path {
        fill: var(--bg-blue);
    }

    .courses__slide-icon:hover {
        border-color: var(--bg-blue);
    }}

/* -------------------------header------------------------- */

.header__tel-body {
    width: 100%;
    max-width: 151px;

    display: flex;
    flex-direction: column;
    gap: 3px;

    position: relative;
}

.header__tel-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 230px;
    z-index: 2;

    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 1px 20px 0 rgba(4, 6, 28, 0.1);
    background: var(--bg-white);

    display: flex;
    flex-direction: column;
    gap: 30px;

    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    transform: translateY(-20px);
}

.header__tel-list--visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.header__tel-list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header__tel-list-link {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--bg-blue);
    display: inline-block;

    transition: all .2s ease;
}

.header__tel-list-link:active {
    color: var(--accent-dark-green);
}

@media(hover:hover) {
    .header__tel-list-link:hover {
        color: var(--accent-dark-green);
    }}

.header__tel-list-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--txt-black);
    display: block;
}

.header__tel-text {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.header__tel-text--active {
    color: var(--bg-blue);
}

.header__tel-text--active .header__tel-text svg path {
    fill: var(--bg-blue);
    transform: rotate(180deg);
    transform-origin: center;
}

.header__tel-text svg path {
    transition: all .3s ease;
}

.header__tel-text:active svg path {
    fill: var(--bg-blue);
}

@media(hover:hover) {
    .header__tel-text:hover svg path {
        fill: var(--bg-blue);
    }}

.header__tel {
    font-size: 14px;
}

.header__tel-desc {
    display: block;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    color: var(--txt-grey-dark);
}

.header__tel-icon {
    display: none;
}

.burger-menu__top-desc:not(:last-child) {
    margin: 0px 0px 40px 0px;
}

/* -------------------------stock------------------------- */

.stock__cards-2 .stock__card {
    grid-column: 6 span;
    padding: 40px;
}

.stock__cards-3 {
    grid-template-rows: repeat(2, 1fr);
}

.stock__cards-4 {
    grid-template-rows: repeat(2, 1fr);
}

.stock-card-1 {
    grid-column: 6 span;
    grid-row: 2 span;
}

.stock-card-2 {
    grid-column: 6 span;
    grid-row: 1 span;
}

.stock-card-4 {
    grid-column: 6 span;
    grid-row: 1 span;
}

.stock-card-3 {
    grid-row: 1 span;
    grid-column: 6 span;
    padding: 37px 40px;
}

.stock-card-5 {
    grid-row: 4/5;
    grid-column: 6 span;
}

.stock-card-3 .stock__card-item,
.stock-card-5 .stock__card-item {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.stock__cards-5 {
    grid-template-rows: repeat(4, 1fr);
}



.stock__cards-6 {
    grid-template-rows: repeat(4, 1fr);
}

.stock__cards-7 {
    grid-template-rows: repeat(4, 1fr);
}

.stock-card-6 {
    grid-column: 1/4;
    grid-row: 1 span;
}

.stock-card-7 {
    grid-column: 4/7;
    grid-row: 1 span;
}

.stock__cards-8 {
    grid-template-rows: repeat(4, 1fr);
}

.stock-card-8 {
    grid-column: 7/13;
    grid-row: 3/5;
}

.stock__cards-9 {
    grid-template-rows: repeat(5, 1fr);
}

.stock__cards-9 .stock-card-4 {
    grid-row: 5/6;
}

.stock__cards-9 .stock-card-5 {
    grid-row: 6/7;
}

.stock__cards-10 {
    grid-template-rows: repeat(4, 1fr);
}

.stock-card-10 {
    grid-row: 5/7;
    grid-column: 7/13;
}

.stock__cards-12 {
    grid-template-rows: repeat(6, 1fr);
}

.stock__cards-12 .stock-card-4 {
    grid-row: 5/6;
    grid-column: 7/13;
}

.stock-card-11 {
    grid-column: 7/10;
    grid-row: 1 span;
}

.stock-card-12 {
    grid-column: 10/13;
    grid-row: 1 span;
}

.stock__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0px 0px 0px;
}

.stock__inner .stock__cards-5,
.stock__inner .stock__cards-6,
.stock__inner .stock__cards-4,
.stock__inner .stock__cards-7,
.stock__inner .stock__cards-8,
.stock__inner .stock__cards-9,
.stock__inner .stock__cards-10,
.stock__inner .stock__cards-11,
.stock__inner .stock__cards-12 {
    grid-template-rows: auto;
}

.stock__card.stock__card-3{
	gap: 50px;
}

/* -------------------------media------------------------- */

@media(max-width:1320px) {
    .header__tel-list {
        left: -4px;
    }}

@media(max-width:1240px) {
    .courses__slide-session {
        top: 29px;
        left: -17px;
        right: auto;
    }

    .courses__slide-img {
        min-width: 180px;
        max-width: 180px;
    }

    .courses__slide-elem-2 {
        left: 180px;
    }

    .courses__slide {
        padding: 24px;
    }}

@media(max-width:1120px) {
    .courses__slide-img {
        max-width: 212px;
        min-width: 212px;
    }}

@media(max-width:940px) {
    .stock-card-2 {
        grid-row: 1/2;
    }

    .stock__cards-3,
    .stock__cards-5 {
        grid-template-rows: unset;
    }

    .stock__cards-4 {
        grid-template-rows: repeat(3, 1fr);
    }

    .stock-card-5 {
        grid-row: 8/9;
    }

    .stock__cards-6 {
        grid-template-rows: unset;
    }

    .stock__cards-7 {
        grid-template-rows: repeat(5, 1fr);
    }

    .stock__cards-7 .stock-card-1 {
        grid-row: 2/4;
        grid-column: 1/5;
    }

    .stock__cards-7 .stock-card-5 {
        grid-row: 1 span;
    }

    .stock__cards-8 .stock-card-1 {
        grid-column: 1/5;
        grid-row: 2/4;
    }

    .stock-card-8 {
        grid-column: 1/5;
        grid-row: 5/7;
    }

    .stock__cards-8 {
        grid-template-rows: repeat(6, 1fr);
    }

    .stock__cards-8 .stock-card-4 {
        grid-row: 4/5;
    }

    .stock-card-6 {
        grid-column: 5/7;
    }

    .stock-card-7 {
        grid-column: 5/7;
    }

    .stock-card-1:nth-child(1) {
        grid-row: 2/4;
        grid-column: 1/5;
    }

    .stock__cards-2 .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock__cards-3 .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock__cards-9 .stock-card-8 {
        grid-column: 1/-1;
    }

    .stock__cards-9 .stock-card-4,
    .stock__cards-9 .stock-card-5 {
        grid-row: unset;
    }

    .stock__cards-9 {
        grid-template-rows: unset;
    }

    .stock-card-8 {
        grid-row: 2 span;
    }

    .stock-card-10 {
        grid-column: 1/-1;
        grid-row: 1 span;
    }

    .stock__cards-10 .stock-card-6 {
        grid-row: 6/7;
    }

    .stock__cards-10 .stock-card-7 {
        grid-row: 7/8;
    }

    .stock__cards-10 {
        grid-template-rows: unset;
    }

    .stock-card-11,
    .stock-card-12 {
        grid-column: 5/7;
    }

    .stock__cards-12 .stock-card-4 {
        grid-column: 1/-1;
    }

    .stock-card-2 {
        grid-column: 1/-1;
    }

    .stock__cards-12 .stock-card-4 {
        grid-row: 4/5;
    }

    .stock__cards-12 .stock-card-8 {
        grid-row: 5/7;
        grid-column: 3/7;
    }

    .stock-card-6,
    .stock-card-7 {
        grid-column: 1/3;
    }

    .stock-card-1 {
        grid-column: 4 span;
    }

    .stock__cards-5 .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock__cards-6 .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock__cards-12 {
        grid-template-rows: unset;
    }

    .stock__cards-8 .stock-card-8 {
        grid-column: 3/7;
        grid-row: 5/7;
    }

    .stock__cards-9 .stock-card-4 {
        grid-row: 5/6;
    }

    .stock__cards-9 .stock-card-1:not(:first-child) {
        grid-column: 1/-1;
    }

    .stock__cards-10 .stock-card-6,
    .stock__cards-10 .stock-card-7 {
        grid-column: 5/7;
    }

    .stock__cards-10 .stock-card-1:not(:first-child) {
        grid-column: 1/-1;
    }}

@media(max-width:768px) {
    .courses__slide {
        padding: 20px;
        gap: 16px;
    }

    .courses__slide-img {
        max-width: 180px;
        min-width: 180px;
    }

    .courses__slide-session {
        font-size: 12px;
    }

    .courses__slide-name {
        font-size: 18px;
    }

    .courses__slide-desc {
        font-size: 14px;
    }

    .courses__slider-btn svg {
        width: 30px;
        height: 30px;
    }

    .courses__slider-btn-next {
        right: -15px;
    }

    .courses__slider-btn-prev {
        left: -15px;
    }

    .header__tel-list {
        width: 203px;
    }}

@media(max-width:764px) {

    .header__tel-text,
    .header__tel-desc {
        display: none;
    }

    .header__tel-icon {
        display: block;
    }

    .header__tel-list {
        left: -99px;
    }}

@media(max-width:760px) {
    .stock__cards-4 {
        grid-template-rows: unset;
    }

    .stock__cards-7 {
        grid-template-rows: unset;
    }

    .stock__cards-7 .stock-card-4 {
        grid-row: 1 span;
        grid-column: 1/-1;
    }

    .stock__cards-7 .stock-card-1 {
        grid-row: 2/3;
        grid-column: 1/-1;
    }

    .stock__cards-7 .stock-card-2 {
        grid-column: 1/-1;
    }

    .stock__cards-7 .stock-card-5 {
        grid-column: 1/-1;
        grid-row: 1 span;
    }

    .stock__cards-8 .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock__cards-8 {
        grid-template-rows: unset;
    }

    .stock__cards .stock__card {
        grid-row: unset !important;
    }

    .stock-card-3 {
        grid-column: 1/-1;
    }

    .stock-card-1 {
        grid-column: 1/-1;
    }

    .stock-card-6 {
        grid-column: 1/2;
    }

    .stock-card-7 {
        grid-column: 2/3;
    }

    .stock-card-8 {
        grid-column: 1/-1 !important;
    }

    .stock-card-2,
    .stock-card-4 {
        grid-column: 1/-1;
    }

    .stock-card-5 {
        grid-column: 1/-1;
    }

    .stock__cards-9 {
        grid-template-rows: unset;
    }

    .stock-card-1:nth-child(1) {
        grid-column: 1/-1;
    }

    .stock-card-11 {
        grid-column: 1/2;
    }

    .stock-card-12 {
        grid-column: 2/3;
    }

    .stock__cards-12 .stock-card-8 {
        grid-row: 4/5 !important;
    }

    .stock__cards-2 .stock__card,
    .stock-card-3 {
        padding: 30px;
    }

    .stock__cards-9 .stock-card-4 {
        grid-row: 5/6 !important;
    }}

@media(max-width:560px) {
    .courses__slide {
        flex-direction: column;
    }

    .courses__slide-elem-1,
    .courses__slide-elem-2 {
        bottom: auto;
        top: 0;
        right: auto;
        left: 40px;
    }

    .courses__slide-body {
        height: 100%;
    }

    .courses__slide-img {
        position: unset;
    }

    .courses__slide-session {
        top: 20px;
        right: 20px;
        left: auto;
    }

    .courses__slide-list,
    .courses__slide-body {
        gap: 8px;
    }}

@media(max-width:480px) {
    .burger-menu__list {
        margin: 0px 0px 30px 0px;
    }

    .burger-menu__top-desc:not(:last-child) {
        margin: 0px 0px 30px 0px;
    }

    .stock__cards-2 .stock__card,
    .stock-card-3 {
        padding: 24px;
    }

    .stock__bottom {
        margin: 30px 0px 0px 0px;
    }}

@media(max-width:450px) {

    .stock__card-3,
    .stock__card-4 {
        grid-column: 1/-1;
    }

    .stock__cards-12 .stock-card-8 {
        grid-row: 5/6 !important;
    }

    .stock__cards-9 .stock-card-4 {
        grid-row: 6/7 !important;
    }}

.stock__card:hover svg path.blue-details{
        stroke: var(--accent-dark-green);
}

.stock__card:hover .stock__card-title .color-blue{
    color: var(--accent-dark-green);
}