html {
    font-family:sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
}
*,*::after,*::before {
    box-sizing: border-box;
}
img {
    max-width:100%;
    display: block;
    margin: 0 auto;
}
p {
    margin:0 0 20px 0;
    line-height: 1.5;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    color: #000;
    line-height: 1.15;
    min-width: 320px;
    margin: 0;
}
a {
    text-decoration: none;
}
svg {
    display: block;
}
br {
    line-height: 1;
    font-size: 0;
}
.nowrap {
    white-space: nowrap;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    padding: 15px 0;
    border-bottom: 2px solid rgb(199, 199, 199);
    box-shadow: 0 5px 10px 0 rgb(199, 199, 199);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu {
    width: 25px;
    display: block;
}

.header__menu-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-bottom: 5px;
}

.header__menu-line:last-child {
    margin-bottom: 0;
}

.header__list {
    display: none;
}

.content__inner {
    padding: 20px 0;
}

.content__title {
    color: #364a50;
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
    color: red;
}

.content__subtitle {
    font-size: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 10px;
}

.content__clock {
    margin-right: 5px
}

.content__date {
    color: #848f91;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.content__link {
    color: #0083cd;
    text-decoration: underline;
}

.content__link:hover {
    text-decoration: none;
}

.content__list-wrapper {
    border: 2px solid #74888e;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(116, 136, 142, 0.2)
}

.content__list-wrapper .content__list {
    margin-bottom: 0;
}

.content__list-title {
    margin-bottom: 10px;
}

.content__list {
    margin: 0 0 20px;
    line-height: 1.4;
    padding-left: 20px;
    list-style: disc;
}

.content__list li:not(:last-child) {
    margin-bottom: 10px;
}

.content__btn {
    background-color: rgb(255, 0, 0);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    display: block;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 2px 5px 0px #000;
    width: 100%;
    max-width: 250px;
    line-height: 1.2;
    transition: background-color 0.3s;
}

.content__btn:hover {
    background-color: rgb(197, 5, 5);
}

.image__wrapper {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
}

.image__note {
    padding-top: 5px;
    font-size: 16px;
    text-align: center;
    font-style: italic;
}

.attention-text {
    border: 2px solid #74888e;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(58, 252, 10, 0.1);
}

.attention-comment {
    border: 2px solid #74888e;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: rgba(116, 136, 142, 0.2);
}

.attention-comment__left {
    border-bottom: 2px solid #74888e;
    padding: 10px;
}

.attention-comment__right {
    padding: 10px;
}

.attention-comment__name {
    font-size: 16px;
    padding-top: 10px;
    text-align: center;
    line-height: 1.2;
}

.attention-comment__name b {
    font-size: 18px;
}

.attention-comment *:last-child{
    margin-bottom: 0;
}

.red-text {
    color: red;
}

.form {
    padding: 15px;
    border: 2px solid #74888e;
    background-color: rgba(116, 136, 142, 0.2);
    border-radius: 10px;
}

.form__wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}

.form__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form__input {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 10px 15px;
    border: 2px solid rgb(124, 123, 123);
    border-radius: 10px;
    box-shadow: 0px 3px 10px -5px #000;
}

.form__input:focus {
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0px 3px 15px -5px #000;
}

.form__btn {
    width: 100%;
    border: none;
    background-color: rgb(255, 0, 0);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    display: block;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 2px 5px 0px #000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form__btn:hover {
    background-color: rgb(197, 5, 5);
}

.form__note {
    text-align: center;
    padding-top: 5px;
    font-size: 16px;
}

.form__price {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    text-align: center;
}

.form__title-old {
    font-size: 18px;
    margin-bottom: 15px;
}

.form__title-new {
    font-size: 20px;
    margin-bottom: 10px;
}

.form__value-old {
    font-size: 24px;
}

.form__value-new {
    font-size: 30px;
}

.form__lines {
    position: relative;
}

.form__lines::after {
    content: '';
    position: absolute;
    width: 80%;
    border-bottom: 1px solid red;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.form__lines::before {
    content: '';
    position: absolute;
    width: 80%;
    border-bottom: 1px solid red;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
}

.prod__wrapper {
    margin: 0 auto 20px;
    width: 250px;
}

.comment__block {
    margin-bottom: 20px;
}

.comment__title {
    font-size: 22px;
    margin-bottom: 20px;
}

.comment {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
    padding-left: 60px;
    position: relative;
}

.comment:last-child {
    margin-bottom: 0;
}

.comment-answer {
    margin-left: 15px;
}

.comment__ava {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.comment__name {
    font-weight: 700;
    margin-bottom: 5px;
}

.comment__city {
    font-size: 16px;
    margin-bottom: 5px;
}

.comment__text {
    margin-bottom: 10px;
}

.comment__photo {
    margin: 0 0 10px;
}

.comment__date {
    font-size: 16px;
    color: rgb(100, 100, 100);
}

.visually-hidden {
    position: absolute!important;
    clip: rect(1px,1px,1px,1px);
    padding: 0!important;
    height: 1px!important;
    width: 1px!important;
    overflow: hidden;
}

.comment-create__wrapper {
    margin-bottom: 20px;
}

.comment-create__form {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.comment-create__form.show {
    display: flex;
}

.create-comment__image-wrapper {
    display: flex;
    align-items: center;
}

.create-comment__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('../img/com-ava.png');
    background-position: center;
    background-repeat: no-repeat
}

.create-comment__image.added {
    background-image: url('../img/check.png');;
}

.create-comment__image-text {
    margin-left: 10px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 15px;
}

.comment-create__text {
    resize: none;
    height: 100px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #838383;
    resize: none;
    overflow: auto;
    padding: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.comment-create__name,
.comment-create__city,
.comment-create__age {
    border-radius: 5px;
    border: 1px solid #838383;
    padding: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.comment-create__name:focus,
.comment-create__city:focus,
.comment-create__age:focus,
.comment-create__text:focus {
    border: 1px solid #000;
    box-shadow: inset 0 0 3px 0 #000;
}

.comment__info-image-wrapper {
    margin-bottom: 10px;
}

.comment-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;
}

.comment-create__btn:hover {
    background-color: rgb(11, 69, 146);
    box-shadow: 0 0 5px 0 rgb(11, 69, 146);
}

.comment_moderate {
    font-size: 18px;
    text-align: center;
    display: none;
}

.comment_moderate.show {
    display: block;
}

.footer {
    background: #293745;
    box-shadow: 0 5px 0 0 #293745;
    padding: 15px 0;
}

.footer__text {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 480px) {
    .content__title {
        font-size: 26px;
    }

    .content__subtitle {
        font-size: 22px;
    }

    .comment-answer {
        margin-left: 30px;
    }

    .comment-create__name,
    .comment-create__city,
    .comment-create__age,
    .comment__info-image-wrapper {
        width: 48%;
    }
    
    .prod__wrapper {
        width: 300px;
    }
}

@media screen and (min-width: 640px) {
    .content__title {
        font-size: 29px;
    }

    .attention-comment {
        display: flex;
    }

    .attention-comment__left {
        border-right: 2px solid #74888e;
        border-bottom: none;
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
    }

    p {
        margin:0 0 30px 0;
        text-align: justify;
    }
    
    .content__inner {
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
        padding: 20px 0 30px;
    }

    .content__title {
        font-size: 34px;
    }

    .content__subtitle {
        font-size: 24px;
    }

    .content__list-wrapper {
        margin-bottom: 30px;
    }
    
    .content__list-wrapper .content__list {
        margin-bottom: 0;
    }

    .content__list-title {
        margin-bottom: 15px;
    }

    .content__list {
        margin: 0 0 30px;
    }
    .content__list li:not(:last-child) {
        margin-bottom: 15px;
    }

    .image__wrapper {
        margin: 40px auto;
    }

    .attention-comment {
        margin-bottom: 30px;
    }

    .form {
        padding: 25px;
        width: 350px;
    }

    .form__wrapper {
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        max-width: 100%;
    }

    .prod__wrapper {
        width: 300px;
        margin: 0;
    }

    .comment__block {
        margin-bottom: 30px;
    }

    .comment-create__wrapper {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 993px) {

    .header__menu {
        margin-right: 25px;
    }

    .header__logo {
        margin: 0 auto 0 0;
    }

    .header__list {
        display: flex;
        margin-right: 20px;
    }

    .header__link {
        text-transform: uppercase;
        color: #4d4d4d;
        font-size: 14px;
        font-weight: 700;
        padding: 10px;
        transform: 0.3s;
    }

    .header__link:hover {
        color: #0a72cc;
    }

    .content .container {
        border-right: 1px solid #ddd;
        border-left: 1px solid #ddd;
        box-shadow: 0px 25px 25px 0px rgb(180, 180, 180);
    }

    .content__title {
        font-size: 38px;
    }

    .content__subtitle {
        font-size: 25px;
    }

    .prod__wrapper {
        width: 400px;
    }

    .attention-text {
        margin-bottom: 50px;
    }

    .attention-comment__left {
        width: 340px;
    }

    .attention-comment__right {
        width: calc(100% - 340px);
    }

    .form__wrapper {
        margin-bottom: 50px;
    }
}

::-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;
}