.fixed-info-icons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 100;
}

.fixed-info-icon:hover {
    background-color: #ff8e41;
}

.fixed-info-icon {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    border: none;
    background: #e27200;
    color: #ffffff;
    border-radius: 100%;
    font-size: 18px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    display: block;
    -webkit-animation: fixedInfoIconAnim 2.5s infinite ease-in-out;
    animation: fixedInfoIconAnim 2.5s infinite ease-in-out;
}

@-webkit-keyframes fixedInfoIconAnim {
    from {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes fixedInfoIconAnim {
    from {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.fixed-info-icons .hint::before {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    bottom: -5px;
    left: 11px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fixed-info-icons .hint p {
    padding: 10px 15px 10px 20px;
}

.fixed-info-icons .hint {
    width: 275px;
    color: #333333;
    border-radius: 10px;
    right: auto;
    left: 0;
    top: auto;
    bottom: 55px;
    display: block;
    max-width: none;
    padding: 0;
    -webkit-box-shadow: -3px 6px 20px 5px rgba(0, 0, 0, 0.3);
    box-shadow: -3px 6px 20px 5px rgba(0, 0, 0, 0.3);
}

.fixed-info-icons .fixed-info-icon__cross:hover {
    background-image: url(https://tophotels.ru/csstx/i/cross-thin.svg);
}

.fixed-info-icons .fixed-info-icon__cross {
    top: 0;
    right: 0;
    width: 40px;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    height: 45px;
    background: url(https://tophotels.ru/csstx/i/cross-thin-grey.svg) center/12px no-repeat;
}

@media screen and (max-width: 1800px) {
    .fixed-info-icons {
        left: 15px;
        bottom: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .fixed-info-icon {
        width: 30px;
        height: 30px;
    }

    .fixed-info-icons {
        left: 5px;
        bottom: 5px;

    }

    .fixed-info-icons .hint {
        bottom: 45px;
        width: 255px;
    }
}

@media screen and (max-width: 1023px) {
    .fixed-info-icons .hint p {
        padding-left: 15px;
        font-size: 12px;
        line-height: 18px;
    }

    .fixed-info-icons {
        bottom: 5px;
        left: 0;
    }

    .fixed-info-icon {
        animation: none;
        border-radius: 0 15px 15px 0;
        background-image: none;
        height: 30px;
    }

    .fixed-info-icons .fixed-info-icon__cross {
        width: 30px;
        background-size: 10px;
        height: 30px;
        right: 4px;
        top: 4px;
    }

    .fixed-info-icons .hint {
        width: 220px;
        left: 5px;
        bottom: 40px;
    }

    .fixed-info-icons .hint::before {
        bottom: -5px;
        left: 7px;
    }
}

@media screen and (max-width: 767px) {
    .fixed-info-icons .hint {
        display: none !important;
    }
}