.calendar_hot_btn {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.calendar_hot_link {
    position: fixed;
    z-index: 10;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}

@media only screen and (max-width: 550px) {
    .calendar_hot_link {
        right: 10px;
    }
}

.calendar_hot_icon_div {
    position: relative;
    z-index: 10;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 25px;
    align-items: center;
    color: white;
    transition: var(--trans);
}

.calendar_hot_link:hover .calendar_hot_icon_div {
    border: 2px solid var(--main-color-hover);
    background-color: var(--main-color-hover);
}

.calendar_hot_icon {
    width: 45px;
}
