/*основные цвета*/
:root{
    --c-green: #0d9b6f;
    --c-light-green: rgba(13, 155, 111, 0.35);
    --c-grey: #f2f2f2;
    --c-white: #fefefe;
}

*{
    margin: 0;
    padding: 0;
}

ul, li{
    padding: 0;
    list-style-type: none;
}

p{
    margin-bottom: 10px;
    color: grey;
}

button,
button:active,
button:focus,
input[type=submit],
#wa-my-info-edit
{
    outline: none;
    border:none;
    display: block;
    width: 100%;
    color: white;
    padding: 5px 7px;
    background-color: var(--c-green);
    border-radius: 3px;
    font-weight: bold;
}

a,
a:hover,
a:active,
a:visited,
a:focus
{
    text-decoration: none;
    color: var(--c-green);
    cursor: pointer;
}

h1{
    font-size: 22px;
}

h2{
    font-size: 20px;
}

h3{
    font-size: 18px;
}

h1,h2,h3{
    margin-bottom: 15px;
}

span{
    font-size: 14px;
    font-weight: 400;
}

body{
    font-family: Roboto, serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    background-color: var(--c-white);
    color: black;
}

#content{
    position: relative;
    margin-top: 139px; /*оступ = высота header*/
    margin-bottom: 50px;
    float: left;
    width: 100%;
    overflow-x: hidden;
}

#content.small-indent{
    margin-top: 74px;
}

.container {
    padding-left: 8px;
    padding-right: 8px;
}

img{
    width: 100%;
    height: 100%;
}


input,
select,
textarea{
    height: 40px;
    padding: 0 10px;
    border: 1px solid #C5C5C5;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f0f9f1fa;
}

input[type='checkbox']{
    width: auto !important;
    display: inline-block;
    margin-left: 3px;
}

textarea{
    min-height: 80px;
    padding: 10px;
}

.checkbox{
    margin-bottom:5px;
}

.wa-signup-form-wrapper input{
    width: 100% !important;
}

label{
    margin-bottom: 5px;
    display: block;
}

.error-block{
    text-align: center;
    width: 100%;
    background-color: #ff00005e;
}

.error-block p{
    text-align: center;
    width: 100%;
    background-color: #ff00005e;
    color: black;
}

#wa-my-info-read-wrapper .wa-field{
    display: flex;
    margin-bottom: 10px;
}

#wa-my-info-read-wrapper .wa-field:last-child{
    margin-bottom: 15px;
}

#wa-my-info-read-wrapper .wa-name{
    color: grey;
    width: 40%;
}

#wa-my-info-read-wrapper .wa-value{
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
}

#wa-my-info-cancel{
    outline: none;
    display: flex;
    padding: 5px 7px;
    background-color: white;
    border-radius: 3px;
    font-weight: bold;
    height: 28px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 2px var(--c-green) solid;
    color: var(--c-green);
}

#wa-my-info-wrapper .wa-value select[name="profile[birthday][day]"]{
    width: 18%;
    display: inline-block;
    margin-right: 8px;
}

#wa-my-info-wrapper .wa-value select[name="profile[birthday][month]"]{
    width: 35%;
    display: inline-block;
    margin-right: 8px;
}

#wa-my-info-wrapper .wa-value input[name="profile[birthday][year]"]{
    display: inline-block;
    width: 25%;
}

#wa-my-info-edit-wrapper .wa-name{
    margin-bottom: 5px;
}