.fixed-block {
    position: fixed;
    right: 30px;
    top: 20px;
    z-index: 203;
}

a.fixed-btn {
    background: linear-gradient(to bottom, #09cfa1, #05ab7c);
    display: grid;
    grid-template-columns: 25px auto;
    grid-gap: 0 10px;
    color: white;
    font-weight: bold;
    padding: 10px;
    max-width: 160px;
    min-width: 160px;
    border-radius: var(--BorderRadius);
    justify-content: center;
    position: relative;
}


@media (max-width: 1600px) {

.fixed-block {
        right: 20px;
    }
}



@media (max-width: 1400px) {
.fixed-block {
    right: 185px;
    top: 22px;
}

}
@media (max-width: 1199px) {
.fixed-block {
    top: 14px;
}
}

@media (max-width: 600px) {

.fixed-block {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
}

a.fixed-btn {
    max-width: none;
    border-radius: 0;
    padding: 15px;
}



}