/*!
Theme Name: Ankey
Description: Ankey WP Theme
Version: 1.0
Text Domain: ankey
*/

@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-Light.ttf') format('truetype');
    font-display: swap;
    font-weight: 100;
}
@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 300;
}
@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-SemiBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
}
@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 900;
}

html,
body {
    font-family: Manrope, sans-serif, Arial;
    font-weight: 300;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /*background-image: url(images/pageBack.png); */
    background-color: #F8F8F9;
    /* background-size: auto;
    background-repeat: repeat; */
    color: #323645;
    position: relative;
}

body {
    padding-top: 100px;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-track {
	background-color: #E6E6EF;
    border-radius: 5px;
}

::-webkit-scrollbar {
	width: 5px;
    height: 5px;
	background-color: #E6E6EF;
    pointer-events: none;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #A2C14B;
    border-radius: 5px;
}

* {
    outline: none;
    box-shadow: none;
    font-family: Manrope, sans-serif, Arial;
    font-weight: 300;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    color: #A2C14B;
    text-decoration: none;
    transition: .3s all;
}

a:hover {
    color: #8ba73f;
}

.center {
    text-align: center;
}

.button {
    padding: 9px 50px 11px;
    background: -moz-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: -webkit-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    -moz-box-shadow: 0px 4px 14px rgba(242, 242, 242, 0.5);
    -webkit-box-shadow: 0px 4px 14px rgba(242, 242, 242, 0.5);
    box-shadow: 0px 4px 14px rgba(242, 242, 242, 0.5);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s all;
    color: #323645!important;
    overflow: hidden;
    position: relative;
}

.button text {
    font-weight: 500;
    color: #323645!important;
    position: relative;
    z-index: 2;
}

.button:before {
    content: '';
    background: #78FF8A;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}

.button:hover:before {
    opacity: 1;
}

strong,
b {
    font-weight: 500;
}

.hidden {
    display: none!important;
}

.container {
    max-width: calc(100% - 80px);
    margin: 0 auto;
    width: 1200px;
}

.blockTitle {
    margin: 0 0 40px;
    font-size: 44px;
    font-weight: 100;
}

header {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 835px;
    background: #FBFCFD;
    -moz-box-shadow: 0px 4px 4px rgba(216, 224, 227, 0.2);
    -webkit-box-shadow: 0px 4px 4px rgba(216, 224, 227, 0.2);
    box-shadow: 0px 4px 4px rgba(216, 224, 227, 0.2);
    border-radius: 20px;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

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

.linkWA {
    width: 30px;
    height: 30px;
    background: url(images/wa.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 20px;
}

.headerContacts a:not(.linkWA) {
    font-weight: 700;
    font-size: 12px;
    margin-left: 20px;
    color: #323645;
}

header ul {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: -3px 0 0;
    padding: 0;
}

header li {
    display: block;
}

header li a {
    color: #323645;
    font-weight: 500;
    font-size: 12px;
}

header a {
    color: #323645;
}

header a:hover {
    color: #323645;
    text-decoration: underline;
}

.sliderMain {
    width: calc(100% + 80px);
    margin-left: -40px;
}

.smItem {
    height: 440px;
    position: relative;
}

.smItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s all;
    opacity: 1;
}

.smItem:not(.slick-current) img {
    opacity: .4;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 90%;
}

.slick-dots {
    padding: 0;
    margin: -2px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.slick-dots li {
    display: block;
}

.slick-dots li button {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E2E5E8;
    transition: .3s all;
    font-size: 0;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
    background: #ADAFB2;
}

.aboutWrap {
    margin-top: 40px;
}

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

.aboutList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 25%;
    margin-right: 13.5%;
}

.alItem {
    margin-bottom: 27px;
}

.alItem p {
    margin: -2px 0 5px 0;
    color: #919191;
    font-weight: 500;
    font-size: 32px;
    display: flex;
    align-items: flex-start;
}

.alItem p:before {
    content: '';
    flex-shrink: 0;
    width: 26px;
    margin-right: 18px;
    height: 10px;
    background: url(images/arrow.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 20px;
}

.alItem text {
    font-size: 16px;
    font-weight: 500;
    margin: -9px 0 0 44px;
    display: block;
}

.aboutText {
    width: 61.5%;
}

.aboutText p {
    font-size: 18px;
    margin: 0 0 15px;
}

.productsWrap {
    margin: 85px 0 0;
    background: #E2E5E8;
    padding: 20px 45px 30px;
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.productItem {
    width: 49%;
}

.productInfo {
    background: #F8F8F9;
    border-radius: 35px;
}

.productInfo li br {
    display: none;
}

.productItem h2,
.productItem h3 {
    font-weight: 700;
    font-size: 26px;
    margin: 0 30px 15px;
    padding-top: 30px;
}

.productItem ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin: 0 30px;
    padding: 0;
    justify-content: space-between;
}

.productItem li {
    display: block;
    font-size: 18px;
    min-width: 140px;
}

.productItem img {
    display: block;
    margin: 15px 0 0;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 35px;
}

.getProduct {
    background: #fff;
    padding: 12px 20px 12px 30px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
}

.getProduct text {
    font-size: 18px;
    font-weight: 900;
}

.formWrap {
    padding: 30px 45px 35px;
    background: #E2E5E8;
    margin-top: 14px;
    border-radius: 35px;
}

.formWrap h3 {
    font-size: 26px;
    margin: 0 0 10px;
    font-weight: 700;
}

.formWrap p {
    font-size: 18px;
    margin: 0;
    max-width: 500px;
}

form {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
}

.inputWrap,
.wpcf7-form-control-wrap {
    width: 26%;
    margin-right: 1%;
}

.inputWrap input,
.wpcf7-form-control-wrap input {
    font-size: 14px;
    border: none;
    padding: 18px 20px;
    border-radius: 15px;
    background: #F0F3F5;
    width: calc(100% - 40px);
}

.inputWrap input::placeholder,
.wpcf7-form-control-wrap input::placeholder {
    color: #BDC4CB;
}

.checksWrap {
    width: 25.5%;
    margin-right: 1.5%;
    flex-shrink: 0;
}

form .button {
    padding: 17px 70px 18px;
    flex-shrink: 0;
}

.checksWrap {
    display: flex;
    flex-direction: column;
    gap: 6px 0;
}

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

.checkBox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    flex-shrink: 0;
}

.checkBox input {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.checkBox span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #F8F8F9;
    pointer-events: none;
}

.checkBoxWrap text {
    font-size: 12px;
    line-height: 100%;
}

.checkBox input:checked + span:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: -moz-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: -webkit-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    z-index: 2;
    border-radius: 4px;
}

.deliveryWrap {
    margin-top: 100px;
}

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

.stepItem {
    width: calc(49% - 92px);
    background: #F8F8F9;
    border: 1px solid #E2E5E8;
    border-radius: 40px;
    padding: 30px 45px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.stepIcon {
    width: 50px;
    height: 50px;
    background: -moz-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: -webkit-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    border-radius: 15px;
    position: relative;
}

.stepIcon span {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    left: 1px;
    top: 1px;
    background-color: #F8F8F9 !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
}

.stepItem p {
    margin: 20px 0 0;
    font-size: 18px;
}

.deliveryWrap .stepItem {
    min-height: 300px;
    justify-content: space-between;
}

.deliveryWrap .stepItem p {
    max-width: 330px;
}

.warantyWrap {
    margin-top: 85px;
}

.deliveryWrap .stepIcon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.deliveryWrap .stepIcon span {
    border-radius: 20px;
}

.examplesWrap {
    margin: 100px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.examplesListWrap {
    width: 47%;
    margin-right: 3.5%;
}

.examplesListWrap text {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.examplesListWrap span {
    display: flex;
    align-items: center;
    color: #919191;
    font-size: 32px;
    margin-bottom: 2px;
}

.examplesListWrap span:before {
    content: '';
    width: 15px;
    height: 15px;
    background: url(images/star.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    flex-shrink: 0;
}

.examplesContent {
    width: 49.5%;
    margin-top: -10px;
}

.examples .slick-list {
    width: calc(100% + 358px);
    margin-right: -350px;
    margin-left: -8px;
}

.examples a {
    margin: 0 8px;
}

.examples .slick-prev {
    display: none;
}

.examples .slick-arrow {
    position: absolute;
    right: 0;
    top: 0;
}

.examples .slick-arrow {
    position: absolute;
    right: 0;
    top: -72px;
    background: -moz-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: -webkit-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    border-radius: 7px;
    margin: 0;
    padding: 0;
    font-size: 0;
    border: none;
    width: 58px;
    height: 20px;
    cursor: pointer;
    overflow: hidden;
}

.examples .slick-arrow:before {
    content: '';
    position: absolute;
    background: #78FF8A;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}

.examples .slick-arrow:hover:before {
    opacity: 1;
}

.examples .slick-arrow:after {
    content: '';
    width: 26px;
    height: 10px;
    background: url(images/arrow.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0);
}

.examples img {
    height: 330px;
    width: 100%;
    border-radius: 35px;
    object-position: center;
    object-fit: cover;
}

.companyWrap {
    margin: 100px 0 0;
}

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

.companyText {
    width: 40%;
    margin-right: 10.5%;
}

.companyText p {
    margin: 0 0 20px;
    font-size: 18px;
}

.companyData {
    border: 1px solid #E2E5E8;
    border-radius: 40px;
    width: calc(49.5% - 92px);
    padding: 45px;
}

.cdItem p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.cdItem p span {
    display: block;
    font-size: 32px;
    color: #919191;
    font-weight: 700;
    margin: 0 0 -5px;
}

.cdItem {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #E2E5E8;
}

.cdItem:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.serviceWrap {
    margin-top: 80px;
}

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

.serviceData {
    padding: 45px 40px;
    border: 1px solid #E2E5E8;
    border-radius: 40px;
    width: calc(45.5% - 82px);
    margin-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 305px;
}

.serviceData span {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.sdLinks {
    display: flex;
    flex-direction: column;
}

.sdLinks a {
    color: #919191;
    font-weight: 700;
    font-size: 32px;
}

.serviceText {
    width: 49.5%;
}

.serviceText p {
    font-size: 18px;
    margin: 0 0 30px;
}

.formBottomWrap {
    background: url(images/formBack.jpg);
    margin-top: 75px;
    border-radius: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 25px;
}

.formBottom {
    background: #FBFCFD;
    padding: 25px 45px;
    border-radius: 40px;
    max-width: 325px;
    margin: 0 auto;
}

.formBottom h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
}

.formBottom p {
    font-size: 18px;
    margin: 0 0 20px;
}

.formBottom form {
    flex-direction: column;
    align-items: flex-start;
}

.formBottom .inputWrap,
.formBottom .wpcf7-form-control-wrap {
    margin: 0 0 6px;
    width: 100%;
}

.formBottom .checksWrap {
    width: 100%;
    margin: 10px 0 15px;
}

.formBottom form .button {
    margin: 0;
}

.formBottom .inputWrap input,
.formBottom .wpcf7-form-control-wrap input {
    background: #F8F8F9;
    border: 1px solid #E2E5E8;
    width: calc(100% - 42px);
}

.formBottom .checkBox span {
    background: #F8F8F9;
    border: 1px solid #E2E5E8;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.formBottom .checkBox input:checked + span:before {
    width: 11px;
    height: 11px;
}

footer {
    background: #323645;
    margin: 15px 0;
    padding: 30px 45px 15px;
    border-radius: 40px;
    color: #E2E5E8;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footerData p {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 500;
}

.footerContacts a {
    display: block;
    text-align: right;
    color: #E2E5E8;
    font-size: 32px;
    font-weight: 700;
}

hr {
    width: 100%;
    height: 1px;
    margin: 10px 0 7px;
    border: none;
    background: #404557;
}

footer > a {
    color: #E2E5E8;
    font-size: 12px;
    font-weight: 500;
    margin: 5px 0 2px;
}

footer a:hover {
    color: #78FF8A;
}

.modal {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 229, 232, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modalBack,
.menuBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal .modalWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(0);
    width: 415px;
    transition: .3s all;
}

.modal.open .modalWrap {
    transform: translate(-50%, -50%) scale(1);
}

.modalClose {
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.modalClose:before,
.modalClose:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: #323645;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modalClose:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

header .menuToggle {
    display: none;
}

header .menuToggle {
    width: 22px;
    height: 22px;
    background: url(images/menuA.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menuMobileWrap {
    position: fixed;
    z-index: 25;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 229, 232, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
}

.menuMobileWrap.open {
    opacity: 1;
    pointer-events: auto;
}

.menuMobileWrap .menuMobile {
    position: absolute;
    padding: 15px 25px 30px;
    background: #fff;
    width: 220px;
    height: calc(100% - 45px);
    top: 0;
    right: -300px;
    border-radius: 20px 0 0 20px;
    transition: .3s all;
}

.menuMobileWrap.open .menuMobile {
    right: 0;
}

.menuHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 30px;
}

.menuHeader .menuToggle {
    width: 22px;
    height: 22px;
    background: url(images/menuB.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.menuMobile ul {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.menuMobile li {
    display: block;
    margin-bottom: 10px;
}

.menuMobile a {
    color: #323645;
    font-weight: 500;
}

.menuMobile .headerContacts {
    display: flex;
    position: absolute;
    left: 25px;
    bottom: 30px;
    width: calc(100% - 50px);
    flex-direction: column;
    align-items: flex-start;
}

.menuMobile .headerContacts a {
    font-weight: 700;
    margin: 10px 0 0;
}

.menuMobile .headerContacts .linkWA {
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 5px;
}

.hidden-fields-container,
[data-name="inWA"], [data-name="agree"],
.wpcf7-not-valid-tip,
.screen-reader-response,
.wpcf7-response-output {
	display: none!important;
}

.wpcf7-not-valid {
    box-shadow: 0 0 0 1px #ff7575;
}

form.sent > * {
    display: none;
}

form.sent > .wpcf7-response-output {
    display: block !important;
    font-weight: 700;
    font-size: 18px;
}

.sliderMain .slick-arrow {
    position: absolute;
    top: 50%;
    left: -25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 0;
    cursor: pointer;
    background: -moz-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: -webkit-linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    background: linear-gradient(183.47deg, #59FFB7 2.86%, #98FF58 97.14%);
    opacity: .95;
    transform: translateY(-50%);
    transition: .3s all;
    z-index: 3;
}

.sliderMain .slick-arrow:hover {
    opacity: 1;
}

.sliderMain .slick-arrow:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: url(images/arrow.svg);
    /* background-color: #f8f8f9; */
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    filter: brightness(0);
}

.sliderMain .slick-next {
    left: auto;
    right: -25px;
}

.sliderMain .slick-next:before {
    transform: none;
}

.advantagesWrap {
    margin-top: 80px;
}

.faqTitle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faqTitle p {
    margin: 0 20px;
    width: calc(100% - 102px);
}

.faqTitle .stepIcon {
    flex-shrink: 0;
}

.faqTitle:after {
    content: '';
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border: 2px solid #b6b6b6;
    border-right: 0;
    border-top: 0;
    transform: rotate(-45deg);
}

.faqItem.open .faqTitle:after {
    transform: rotate(135deg);
}

.faqText {
    margin-top: 25px;
}

.faqItem {
    width: calc(100% - 92px);
}

.usageWrap {
    margin-top: 70px;
}

.pageContent p {
    line-height: 140%;
}

table {
    border-spacing: 0;
    width: 100%;
    border-collapse: collapse;
}

table td {
    border: 1px solid #b6b6b6;
    padding: 10px 12px;
}

.onlyOne .productItem img {
    height: auto;
}

.onlyOne .productItem {
    margin-left: auto;
    margin-right: auto;
}

.examplesContent.examplesFull {
    width: 100%;
}

.examplesFull .examples .slick-list {
    width: 100%;
    margin-right: -8px;
    margin-left: -8px;
}






