@import url(../css/reset.css);

.displayNone {
    display: none;
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
}

.list a {
    font-size: 28px;
    text-transform: capitalize;
    color: grey;
    margin-bottom: 20px;
}

.list a:hover {
    color: #40944A;
}

h2.title {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 29px;
    color: #1D1D20;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    h2.title {
        font-size: 28px;
        line-height: 37px;
    }
}

@media (min-width: 1440px) {
    h2.title {
        font-size: 40px;
        line-height: 53px;
    }
}

.subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #1D1D20;
    margin-bottom: 16px;
}

.subtitle .subtitle__link {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: #57B262;
    transition: all 0.3s ease;
}

.subtitle .subtitle__link:hover {
    color: #40944A;
}

@media (min-width: 992px) {
    .subtitle {
        font-size: 16px;
        line-height: 19px;
    }

    .subtitle .subtitle__link {
        font-size: 16px;
        line-height: 19px;
    }
}

p.description {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 17px;
    color: #6F6E77;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    p.description {
        font-size: 14px;
        line-height: 20px;
    }
}

.btnStyle {
    display: block;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    background: #57B262;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
    border-radius: 24px;
    outline: none;
    border: none;
    padding: 12px;
    transition: all 0.3s ease;
}

.btnStyle:hover, .btnStyle:focus, .btnStyle:active {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #40944A;
    outline: none;
}

.btnStyleInline {
    display: block;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.4px;
    text-decoration: underline;
    text-transform: uppercase;
    color: #6F6E77;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.btnStyleInline:hover, .btnStyleInline:focus, .btnStyleInline:active {
    color: #40944A;
    outline: none;
}

.btnStyleQR {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    text-decoration: none;
    color: #57B464;
    background: transparent;
    border: 2px solid #57B464;
    border-radius: 24px;
    outline: none;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btnStyleQR img {
    width: 14px;
    margin-right: 13px;
    transition: all 0.3s ease;
}

.btnStyleQR span {
    line-height: 13px;
}

.btnStyleQR:hover, .btnStyleQR:focus, .btnStyleQR:active {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #57B464;
    outline: none;
}

.btnStyleQR:hover img, .btnStyleQR:focus img, .btnStyleQR:active img {
    filter: brightness(0) invert(1);
}

.modalStyle {
    position: fixed;
    top: 0;
    z-index: 50;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 24px 15px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.modalStyle textarea {
    min-height: 120px;
}

.modalStyle.active {
    transform: translateX(-15px);
    opacity: 1;
}

.modalStyle-close {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.modalStyle-close img {
    width: 12px;
    margin-right: 10px;
}

.modalStyle-close span {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    color: #6F6E77;
    line-height: normal;
}

.form-modal-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    min-height: 100%;
    max-width: 320px;
}

.form-modal .existing-user {
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
}

.form-modal .existing-user-image {
    display: block;
    width: 56px;
    height: 56px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
}

.form-modal .existing-user__owner {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #57B464;
}

.form-modal .existing-user__owner-name {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #4A4A4A;
}

.form-modal .existing-user__owner-position {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #868686;
}

.form-modal .existing-user__pet {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.form-modal .existing-user__pet-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.form-modal .existing-user__pet-name {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #4A4A4A;
}

.form-modal .existing-user__pet-kind {
    font-weight: bold;
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
    color: #9C9C9C;
}

.form-modal .existing-user__pet-position {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #868686;
}

@media (min-width: 768px) {
    .form-modal-wrap {
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .form-modal {
        width: 50%;
        right: 0;
    }

    .form-modal-wrap {
        justify-content: center;
        height: unset;
    }

    .form-modal-wrap.role-modal {
        max-width: 400px;
    }
}

@media (min-width: 1440px) {
    .form-modal-wrap {
        max-width: 430px;
    }
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    width: 100%;
    margin-bottom: 24px;
}

.form-group-small {
    width: 48%;
}

.form-group_label {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #6F6E77;
    margin-bottom: 8px;
}

#without-address_checkbox-label {
    line-height: 1.5;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #6F6E77;
    margin-bottom: 8px;
}

.form-group_link {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #1D1D20;
    transition: all 0.3s ease;
    text-decoration: none;
    float: right;
}

.form-group_link:hover, .form-group_link:focus, .form-group_link:active {
    color: #40944A;
    text-decoration: none;
}

.form-group_input {
    width: 100%;
    height: 40px;
    background: #F3F2F5;
    border: 1px solid #E3E3E6;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 0 16px;
    color: #1D1D20;
    transition: all 0.3s ease;
}

.form-group_input::placeholder {
    font-family: "Roboto", sans-serif;
    color: #94939C;
}

.error .form-group_input {
    border: 1px solid #FF6C6C;
}

.form-group_textarea {
    width: 100%;
    min-height: 80px;
    background: #F3F2F5;
    border: 1px solid #E3E3E6;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 13px 16px;
    resize: none;
    color: #1D1D20;
    font-family: "Roboto", sans-serif;
}

.form-group_textarea::placeholder {
    font-family: "Roboto", sans-serif;
    color: #94939C;
    line-height: 19px;
}

.form-group_show-hide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 22px;
    right: 0;
    width: 40px;
    height: 40px;
}

.form-group_show-hide input {
    width: 40px;
    height: 40px;
    border: 0;
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.form-group_show-hide input[type=password] {
    letter-spacing: 1px;
}

.form-group_show-hide input[type=checkbox]:checked + label {
    background-image: url("../img/svg/eye-open.svg");
}

.form-group_show-hide label {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: url("../img/svg/eye-close.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.requiredLabel {
    position: relative;
}

.requiredLabel:after {
    content: "*";
    color: #FF6C6C;
    padding-left: 3px;
}

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

.activation-modal__example {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    padding-bottom: 24px;
}

.activation-modal__example-title {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

.activation-modal__example-title h5 {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    padding: 0 5px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #1D1D20;
    background-color: #ffffff;
}

.activation-modal__example-title:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background: #57B464;
    top: 50%;
    transform: translateZ(0) translateY(-50%);
    left: 0;
    z-index: -1;
}

.activation-modal__example-image {
    width: 48%;
}

.activation-modal__example-image img {
    max-width: 100%;
}

.form-control-label {
    width: 100%;
}

.hint {
    display: inline-block;
    cursor: pointer;
}

.help-block {
    margin: 0;
    padding: 3px;
    font-size: 0.9em;
}

.form-group.error .emailError {
    display: block;
}

.emailError {
    display: none;
    position: relative;
    background-image: url("../img/svg/email-error.svg");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-color: #FEF0F0;
    border-radius: 3px;
    padding: 12px 24px 12px 36px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    margin-top: 10px;
    color: #E74646;
}

.emailError span {
    text-decoration: underline;
    font-weight: bold;
    color: #E74646;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emailError span:hover {
    color: #C63737;
}

.emailError-close {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.emailError-close:before, .emailError-close:after {
    content: ' ';
    position: absolute;
    left: 4px;
    top: -1px;
    height: 12px;
    width: 2px;
    background-color: #6F6E77;
}

.emailError-close:before {
    transform: rotate(45deg);
}

.emailError-close:after {
    transform: rotate(-45deg);
}

.role-modal h2 {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #1D1D20;
    margin-bottom: 16px;
}

.role-modal h6 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.role-modal p {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
    color: #4A4A4A;
    margin-bottom: 8px;
}

.role-modal p span {
    font-weight: bold;
}

@media (min-width: 992px) {
    .role-modal h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .role-modal h6 {
        font-size: 16px;
        line-height: 19px;
    }
}

@media (min-width: 1440px) {
    .role-modal h2 {
        font-size: 40px;
        line-height: 47px;
        margin-bottom: 16px;
    }
}

.microchip {
    display: none;
    flex-direction: column;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    min-height: 46px;
    padding-left: 59px;
    background-image: url("../img/svg/qr-bkg.svg");
    background-repeat: no-repeat;
    background-size: 46px;
    background-position: left center;
    margin-bottom: 16px;
}

.microchip.active {
    display: flex;
}

.microchip__heading {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #57B262;
    margin-bottom: 6px;
}

.microchip__number {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #6F6E77;
}

.page-switcher {
    display: flex;
    background: #F3F2F5;
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 3px;
    margin-bottom: 16px;
}

.page-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 10px;
    text-decoration: none;
}

.page-switcher a:hover {
    text-decoration: underline;
}

.page-switcher a.active {
    pointer-events: none;
}

.uploaded {
    margin-bottom: 16px;
}

.uploaded__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-image: url("../img/svg/image-empty.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F3F2F5;
    border: 1px solid #E3E3E6;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    overflow: hidden;
}

.uploaded__image img {
    width: 100%;
}

.uploaded__button {
    display: block;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    color: #57B262;
    background: none;
    border: none;
    outline: none;
    margin: 0 auto;
}

.uploaded__button img {
    width: 15px;
    margin-right: 8px;
}

@media (min-width: 992px) {
    .uploaded__image {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }

    .uploaded__button {
        font-size: 14px;
    }
}

.activationChipHint {
    margin-bottom: -8px;
}

.form-group_chip {
    display: inline-block;
    width: 120px;
    margin-right: 9px;
    margin-top: 0;
    float: left;
}

.form-group_chip-number {
    display: inline-block;
    width: calc(100% - 133px);
}

.form-group_chip-number .help-block {
    width: 290px;
    margin-left: -130px;
}

@media (min-width: 1440px) {
    .form-group_chip-number .help-block {
        width: 400px;
    }
}

.form-group.error .dropdown .select2-container--default .select2-selection--single {
    border: 1px solid #FF6C6C;
}

.dropdown .select2-container {
    width: 100% !important;
    height: 40px;
}

.dropdown .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Roboto", sans-serif;
    padding: 0;
    font-size: 16px;
    line-height: 14px;
    color: #94939C;
}

.dropdown .select2-container--default .select2-selection--single {
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    height: 40px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #1D1D20;
    background: #F3F2F5;
    border: 1px solid #E3E3E6;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 8px 16px;
}

.dropdown .select2-container--default .select2-selection__arrow {
    width: 40px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px solid #D0D0D5;
}

.dropdown .select2-container--default .select2-selection__arrow b {
    border-width: 6px 5px 0 5px;
    border-color: #1D1D20 transparent transparent transparent;
    margin: -2px 0 0 0;
    transform: translateX(-50%);
}

.dropdown .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent #1D1D20 transparent;
}

.select2-results .select2-results__option {
    display: flex;
    align-items: center;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #1D1D20;
    padding: 0 13px;
}

.select2-results .select2-results__option[aria-selected=true] {
    background-color: transparent;
    color: #1D1D20;
}

.select2-results .select2-results__option[aria-selected] {
    color: #1D1D20;
}

.select2-results .select2-results__option--highlighted[aria-selected] {
    background-color: #D7EDDA;
    color: #1D1D20;
}

.flag-text {
    margin-left: 10px;
}

.select2-dropdown {
    background: #FFFFFF;
    border: 1px solid #E3E3E6;
    box-sizing: border-box;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.select2-dropdown.select2-dropdown--below {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding-bottom: 3px;
}

.dropdown {
    width: 100%;
}

.form-group .rs-dropdown-container {
    font-family: "Roboto", sans-serif;
    height: 40px;
}

.form-group .rs-dropdown__wrap {
    width: 100%;
    height: 40px;
}

.form-group.error .rs-dropdown__control,
.form-group.error .rs-dropdown__control:hover,
.form-group.error .rs-dropdown__control::selection,
.form-group.error .rs-dropdown__control:focus {
    border: 1px solid #FF6C6C;
}

.form-group .rs-dropdown__control {
    height: 40px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #1D1D20;
    background: #F3F2F5;
    border: 1px solid #E3E3E6;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: none !important;
}

.form-group .rs-dropdown__control:hover,
.form-group .rs-dropdown__control::selection,
.form-group .rs-dropdown__control:focus {
    background: #F3F2F5 !important;
    border: 1px solid #E3E3E6;
    box-shadow: none;
    background: none;
}

.form-group .rs-dropdown__value-container {
    padding: 0;
    margin: 0;
}

.form-group .rs-dropdown__input {
    margin: 0;
}

.form-group .rs-dropdown__indicator {
    width: 38px;
}

.form-group .rs-dropdown__indicator:after {
    content: '';
    border-style: solid;
    height: 0;
    right: 8px;
    position: absolute;
    top: 50%;
    width: 0;
    border-width: 6px 5px 0 5px;
    border-color: #1D1D20 transparent transparent transparent;
    margin: -2px 0 0 0;
    transform: translateX(-50%);
}

.form-group .rs-dropdown__indicator svg {
    display: none;
}

.form-group .rs-dropdown__placeholder {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #94939C;
}

.rs-dropdown__value-container {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    left: 16px;
    color: #1D1D20;
}

.form-group .rs-dropdown__option:hover,
.form-group .rs-dropdown__option--is-focused {
    background: #D7EDDA;
}

.form-group .rs-dropdown__menu {
    border-radius: 3px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: #57B262;
}

.section {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
}

.section__aside {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    background-color: grey;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vw;
    max-height: 200px;
}

.section__aside.bkg-1 {
    background-image: url("../img/png/background-boy.png");
}

.section__aside.bkg-2 {
    background-image: url("../img/png/background-cat.png");
}

.section__aside > * {
    z-index: 2;
}

.section__aside:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.section__aside_logo {
    width: 120px;
    margin-bottom: 8px;
}

.section__aside_logo img {
    width: 100%;
}

.section__aside_title {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section__form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.section__form-container {
    max-width: 320px;
    margin: 24px 15px;
}

@media (min-width: 768px) {
    .section__aside {
        padding: 54px 0;
        min-height: 200px;
    }
}

@media (min-width: 992px) {
    .section {
        display: flex;
        flex-direction: row;
    }

    .section__aside {
        width: 50%;
        height: 100%;
        padding: 0 50px;
        max-height: unset;
        align-items: flex-start;
        background-size: auto 100%;
        background-position: left 22% center;
        position: fixed;
    }

    .section__aside_logo {
        width: 170px;
        margin-bottom: 16px;
    }

    .section__aside_title {
        font-size: 40px;
        line-height: 53px;
        text-align: left;
    }

    .section__aside_title br {
        display: none;
    }

    .section__form {
        width: 50%;
        flex-grow: unset;
        margin-left: auto;
    }
}

@media (min-width: 1440px) {
    .section__form-container {
        max-width: 430px;
    }
}

@media (min-width: 1920px) {
    .section__aside {
        background-position: left 10% center;
    }
}

.login__social {
    overflow: hidden;
}

.login__social-list {
    display: flex;
    justify-content: center;
}

.login__social_title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.login__social_title h5 {
    display: inline-block;
    padding: 0 5px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #1D1D20;
    background-color: #ffffff;
}

.login__social_title:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background: #57B464;
    top: 50%;
    transform: translateZ(0) translateY(-50%);
    left: 0;
    z-index: -1;
}

.login__social_item {
    width: 25px;
    height: 25px;
    border: 0;
    outline: none;
    padding: 0;
    margin: 0 16px;
    background: transparent;
}

.login__social_item img {
    width: 100%;
}

.request button.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #6F6E77;
    opacity: 1;
}

.request .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    max-width: 400px;
    max-height: 295px;
    margin: 0 auto;
}

.request .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
}

.request__image {
    width: 80px;
    margin-bottom: 16px;
}

.request__title {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #1D1D20;
    margin-bottom: 4px;
}

.request__text {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #6F6E77;
    margin-bottom: 16px;
}

.request__button {
    max-width: 280px;
}

@media (min-width: 992px) {
    .request button.close {
        right: 16px;
        font-size: 32px;
        font-weight: 900;
    }

    .request .modal-content {
        width: 400px;
        height: 295px;
    }

    .request .modal-dialog {
        margin: 0 0 0 auto;
        width: 50%;
    }
}

.add-petForm {
    overflow: hidden;
}

.thanks {
    margin: 16px 0 22px 0;
}

.thanks__content {
    text-align: center;
    align-items: center;
    margin-top: 20px;
    min-height: 350px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
}

.thanks__content__title {
    font-family: Roboto Slab, serif;
    position: relative;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 14px;
    color: #1D1D20;
}

.thanks__content__title-new {
    font-size: 22px;
    line-height: 26px
}

.thanks img {
    max-width: 100%;
}

.thanks__header {
    text-align: center;
    margin-bottom: 40px;
}

.thanks__header_logo {
    display: block;
    width: 120px;
    margin: 0 auto 16px auto;
}

.thanks__header_title {
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #1D1D20;
    margin-bottom: 8px;
}

.thanks__header_description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #4D4D55;
    margin-bottom: 16px;
}

.thanks__header_description a {
    color: #57B262;
}

.thanks__header_button {
    line-height: 12px;
    border: 2px solid #57B262;
    background: transparent;
    color: #57B262;
    max-width: 290px;
    box-shadow: none;
}

.thanks__header_button:hover {
    border: 2px solid #40944A;
    box-shadow: none;
}

.thanks__block {
    text-align: center;
    margin-bottom: 24px;
}

.thanks__block_image {
    margin-bottom: 8px;
}

.thanks__block_description {
    font-family: "Roboto Slab", serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
}

.thanks__block_button {
    line-height: 16px;
    box-shadow: none;
}

.thanks__content__order {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #4D4D55;
    margin-bottom: 14px;
}

.thanks__content__app-image.sign-up img {
    max-width: 500px;
    width: 100%;
}

.thanks__content__app-image.sign-up img + .d-flex {
    margin-top: 24px;
}

.download-app.sign-up {
    max-width: 278px;
}

.download-app.sign-up + .thanks__header_button.sign-up {
    margin-left: 8px;
}

.thanks__header_button.sign-up {
    display: inline-block;
    width: auto;
    max-width: unset;
    min-width: 116px;
}

.download-app--android,
.download-app--safari {
    display: none;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 0\0
) {
    .download-app--android {
        display: flex;
    }
}

@media (max-width: 575px) {
    .thanks__header, .thanks__block {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        float: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .thanks__block {
        width: 50%;
    }

    .thanks__block:last-of-type {
        float: none;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .thanks {
        margin: 28px 0;
    }

    .thanks__header {
        margin-bottom: 30px;
    }

    .thanks__header_logo {
        width: 170px;
        margin-bottom: 20px;
    }

    .thanks__header_title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 14px;
    }

    .thanks__header_description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .thanks__content__title {
        font-size: 60px;
        line-height: 57px;
        margin-bottom: 14px;
        max-width: unset;
    }

    .thanks__content__title-new {
        font-size: 40px;
        line-height: 46px;
    }

    .thanks__content__order {
        font-size: 24px;
        line-height: 28px;
        flex-direction: row;
    }

    .thanks__content__order-new {
        font-size: 20px;
        line-height: 32px;
    }
}

@media (min-width: 1200px) {
    .thanks {
        height: calc(100vh - 65px - 322px);
        min-height: 750px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .thanks__header {
        margin-bottom: 40px;
    }

    .thanks__header_title {
        font-size: 40px;
        line-height: 47px;
    }

    .thanks__header_description {
        max-width: 780px;
        margin: 24px auto 0;
        font-size: 16px;
        line-height: 28px;
    }

    .thanks__block_description {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 26px;
    }
}

.fin {
    margin: 16px 0 22px 0;
}

.fin img {
    max-width: 100%;
}

.fin__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fin__image {
    text-align: center;
}

.fin__header {
    text-align: center;
    margin-bottom: 40px;
}

.fin__header_logo {
    display: block;
    width: 120px;
    margin: 0 auto 16px auto;
}

.fin__header_title {
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #1D1D20;
    margin-bottom: 8px;
}

.fin__header_description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #4D4D55;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .fin {
        text-align: center;
    }

    .fin__header {
        text-align: center;
        width: 100%;
    }

    .fin__header_description {
        max-width: 420px;
        margin: 0 auto;
    }

    .fin__image {
        max-width: 150px;
    }
}

@media (min-width: 992px) {
    .fin {
        height: 100vh;
        min-height: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .fin__container {
        align-items: center;
    }

    .fin__image {
        position: relative;
        display: flex;
    }

    .fin__image.dog {
        order: 1;
    }

    .fin__image.cat {
        order: 5;
    }

    .fin__header {
        order: 3;
        margin-bottom: 30px;
    }

    .fin__header_logo {
        width: 170px;
        margin-bottom: 20px;
    }

    .fin__header_title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 14px;
    }

    .fin__header_description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1200px) {
    .fin__container {
        display: flex;
    }

    .fin__image {
        max-width: 150px;
    }

    .fin__header {
        margin-bottom: 40px;
    }

    .fin__header_title {
        font-size: 40px;
        line-height: 47px;
    }

    .fin__header_description {
        max-width: 770px;
        margin: 0 auto 16px auto;
        font-size: 20px;
        line-height: 28px;
    }
}
