html {
    font-family:sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
    background-color: #0085cf;
}
*,*::after,*::before {
    box-sizing: border-box;
}
img {
    max-width:100%;
    display: block;
    margin: 0 auto;
}
p {
    margin:0 0 20px 0;
    line-height: 1.4;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
body {
    font-family: Arial, sans-serif;
    font-size: 17px;
    color: #414141;
    line-height: 1.15;
    min-width: 320px;
    margin: 0;
}
a {
    text-decoration: none;
}
svg {
    display: block;
}
br {
    line-height: 1;
    font-size: 0;
}
picture {
    display: block;
    flex-shrink: 0;
}
.nowrap {
    white-space: nowrap;
}
.container {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-color: #fff;
    padding: 5px 0;
    border-bottom: 3px solid #0085cf;
}

.header__logo {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    color: #0085cf;
}

.content .container {
    padding-bottom: 20px;
    background-color: #fff;
}

.content__inner {
    padding: 20px 0;
}

.content__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
}

.content__subtitle {
    font-size: 19px;
    line-height: 1.4;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 3px solid #168de2;
    color: #000;
}

.content__link {
    color: #168de2;
    text-decoration: underline;
}

.content__link:hover,
.content__link:focus {
    text-decoration: none;
}

.content__list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content__list li {
    margin-bottom: 10px;
    line-height: 1.4;
}
.content__list li:last-child {
    margin-bottom: 0;
}

.image__wrapper {
    margin: 30px 0;
}

.form__wrapper {
    -webkit-box-shadow: 0 0 10px;
    box-shadow: 0 0 10px;
    border: 3px solid red;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.form__top {
    margin-bottom: 20px;
}

.form__title {
    font-weight: 700;
    margin-bottom: 10px;
}

.form__subtitle {
    color: #ff0000;
    margin-bottom: 10px;
}

.form__image {
    margin-bottom: 20px;
}

.form__inner {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
}

.form__price {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 15px;
}

.price__old {
    color: #b2b2b2;
    text-decoration: line-through;
}

.price__old-title {
    margin-bottom: 17px;
}

.price__old-value {
    font-size: 19px;
}

.price__old-currency {
    font-size: 18px;
}

.price__new {
    color: #3498db;
    font-weight: 700;
}
.price__new-title {
    margin-bottom: 5px;
}

.price__new-value {
    font-size: 30px;
}

.price__new-currency {
    font-size: 25px;
}

.form__input {
    border: 1px solid #d8d8d8;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-size: 18px;
    margin-bottom: 15px;
    padding: 20px 15px;
    width: 100%;
    transition: 0.2s;
}

.form__input:hover,
.form__input:focus {
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.form__btn {
    background-image: linear-gradient(to bottom,rgb(52,152,219),rgb(41,128,185));
    border-radius: 28px;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    border: 3px solid rgb(28, 98, 145);
}

.form__btn:hover,
.form__btn:focus {
    background: linear-gradient(to bottom,rgb(60,176,253),rgb(52,152,219));
}

.social__wrapper {
    display: none;
}

.comment__block {
    margin-bottom: 20px;
}

.comment__title {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
    color: #45688e;
    padding: 15px;
    background: #dae2e8;
}

.comment {
    position: relative;
    padding-left: 65px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dae1e8;
}

.comment:last-child {
    margin-bottom: 0;
}

.comment__ava {
    position: absolute;
    width: 48px;
    height: 48px;
    left: 0;
    top: 0;
}

.comment__name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #2b587a;
}

.comment__text {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.comment__date {
    color: #999;
    font-size: 16px;
}

.product__bottom {
    margin-bottom: 20px;
}

.bottom__btn {
    background-image: linear-gradient(to bottom,rgb(52,152,219),rgb(41,128,185));
    border-radius: 28px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 21px 20px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.bottom__btn:hover,
.bottom__btn:focus {
    background-image: linear-gradient(to bottom,rgb(60,176,253),rgb(52,152,219));
}

.create__wrapper {
    margin-bottom: 20px;
}

.create__form-wrapper {
    display: none;
}

.create__form-wrapper.show {
    display: block;
}

.create__button {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #ccc;
    border: none;
    margin: 0;
    cursor: pointer;
    transition: 0.2s;
}

.create__button.hide {
    display: none;
}

.create__button:hover,
.create__button:focus {
    background-color: rgb(151, 151, 151);
}

.create__name {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #838383;
    padding: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
    transition: 0.2s;
}

.create__name:hover,
.create__name:focus {
    background-color: #ececec;
}

.create__info-image-wrapper {
    margin-bottom: 15px;
}

.create__image-wrapper {
    display: flex;
    align-items: center;
}

.create__image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5e5e5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    background-image: url(../images/com-ava.png);
    background-position: center;
    background-repeat: no-repeat;
}

.create__image.added {
    background-image: url('../images/check.png');;
}

.create__image-text {
    margin-left: 10px;
    cursor: pointer;
    text-decoration: underline;
}

.create__text {
    height: 100px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #838383;
    resize: none;
    overflow: auto;
    padding: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
    transition: 0.2s;
}

.create__text:hover,
.create__text:focus {
    background-color: #ececec;
}

.create__btn {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: rgb(2, 82, 187);
    border-radius: 10px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

.create__btn:hover,
.create__btn:focus {
    box-shadow: 0 0 10px 0 rgb(2 82 187);
}

.create__moderate {
    text-align: center;
    display: none;
}

.create__moderate.show {
    display: block;
}

.visually-hidden {
    position: absolute!important;
    clip: rect(1px,1px,1px,1px);
    padding: 0!important;
    height: 1px!important;
    width: 1px!important;
    overflow: hidden;
}

.footer {
    padding: 15px;
    background-color: #ebebeb;
    text-align: center;
}

.footer__date {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.footer__link {
    font-size: 13px;
    line-height: 1.5;
    color: #23527c;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.footer__link:hover,
.footer__link:focus {
    text-decoration: none;
}

.footer__text {
    font-size: 12px;
    line-height: 1.4;
}

@media screen and (min-width: 480px) {
    .create__form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .create__name {
        width: 60%;
    }

    .create__info-image-wrapper {
        width: 35%;
    }
}

@media screen and (min-width: 640px) {
    .form__wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .form__image {
        width: 220px;
        margin: 0;
    }
    .form__inner {
        margin: 0;
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
    }
    p {
        text-align: justify;
    }
    .container {
        padding: 0 25px;
    }
    .content {
        padding: 20px 0;
        background-color: #0085cf;
    }
    .header {
        padding: 15px 0;
    }
    .header__logo {
        font-size: 60px;
    }
    .content__title {
        font-size: 32px;
        text-align: center;
    }
    
    .content__subtitle {
        font-size: 20px;
    }
    .form__wrapper {
        justify-content: space-around;
    }
    .form__image {
        width: 251px;
    }
    .form__btn {
        font-size: 22px;
    }
    .social__wrapper {
        display: block;
        border: 2px solid #e6e6e6;
        padding: 20px;
        margin-bottom: 20px;
    }
    .social {
        margin: 0;
    }
    .comment__text {
        text-align: justify;
    }
    .bottom__btn {
        font-size: 22px;
        padding: 19px 20px;
        max-width: 310px;
    }
}

::-ms-clear {
    display: none;
}
  
* {
    -webkit-tap-highlight-color: transparent;
}
  
#comebacker_main_div {
    display: none !important;
    height: 0px !important;
}
  
html {
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
  
a:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
  
*:focus,
*:visited,
*:active,
*:hover {
    outline: 0 !important;
}
  
a,
a:focus,
a:visited,
a:active,
a:hover {
    outline: 0 !important;
}
  
*::-moz-focus-inner {
    border: 0;
    outline: none;
}
  
  
button::-moz-focus-inner {
    border: none;
}
  
*:not(#fake) {
    outline: none;
}
  
input:invalid {
    box-shadow: none;
}
.x_country_select{
    display: none !important
}