.tour-calendar{
    background-color: var(--gray-color);
    width: 100%;
    height: 150px;
    margin-top: 10px;
    flex-direction: row-reverse;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.line{
    position: relative;
    background-color: white;
    height: 80%;
    width: 2px;
}

.tour-calendar-image-section{
    height: 100%;
    flex: 2;
}
.tour-calendar-image{
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.tour-calendar-title-section{
    height: 100%;
    flex: 2;
    justify-content: center;
    align-items: center;
    display: flex;
}
.tour-calendar-title{
    font-family: var(--main-font);
    color: var(--black-color);
    font-size: 16px;
    font-weight: bold;
}

.tour-calendar-date-section{
    height: 100%;
    flex: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.tour-calendar-date{
    font-family: var(--main-font);
    color: var(--black-color);
    font-size: 16px;
    font-weight: bold;
}
.tour-calendar-date-pink{
    font-family: var(--main-font);
    color: var(--pink-color);
    font-size: 16px;
    font-weight: bold;
}

.tour-calendar-price-section{
    height: 100%;
    flex: 2;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sold_out_image{
    width: 80px;
    height: 80px;
}
.tour-calendar-price{
    font-family: var(--main-font);
    color: var(--black-color);
    font-size: 16px;
    font-weight: bold;
}

.tour-calendar-action-section{
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
}
.tour-calendar-action-button{
    display: inline-block;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-color: var(--pink-color);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-main);
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    margin-left: 10px;
}