.button{
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    padding: 20px 30px;
    border-radius: 80px;
    cursor: pointer;
}

.button__green-first{
    background: var(--green);
    color: var(--white);
    border: 3px solid var(--green);
	width: 260px;
}

.button__blue{
    background: var(--blue-2);
    color: var(--white);
    border: 3px solid var(--white);

}

.button-sec{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 31.2px;
    padding: 20px 40px;
    background: var(--white);
    color: var(--grey-2);
    border: 3px solid var(--grey-2);
    border-radius: 80px;
    cursor: pointer;
}

.button-sec-img{
    height: 40px;
	margin-right: 11px;
}

.button-sec:hover, .button-sec:active{
    border-color: var(--green);
}

.button__acc-green {
    background: var(--white);
    color: var(--green);
    border: 3px solid var(--green);
    margin: 60px 0 0 50px;
}

.button__price-green{
    background: var(--white);
    color: var(--green);
    border: 3px solid var(--green);
    padding: 20px 110px;
    margin: 60px 0 240px 0;
}

.button__price-green:hover, .button__price-green:active{
    background: var(--green);
    color: var(--white);
}

.order__form-submit {
    cursor: pointer;
    background: var(--grey-2);
    border: none;
    border-radius: 60px;
    width: 60px;
    height: 60px;
}

.order__form-submit:hover{
    background: var(--green);
}

@media screen and (max-width: 575px) {

    .button{
        padding: 20px 20px;
    }
}

@media screen and (max-width: 375px) {

    .button-sec{
		font-size: 20px;
	}
}

@media screen and (max-width: 340px) {

    .button-sec{
        padding: 20px 20px;
    }
}
