.museum-detail{}
.museum-detail .h3{
	font-size:32px;
	font-family: Casus Pro;
}
.museum-detail .drop_down-title{margin: 25px 0 15px;}

.museum-detail .img_wrap{
	margin-bottom: 10px;
	position: relative;
}
.museum-detail .thumb-wrap .gradient_bg,
.museum-detail .img_wrap .gradient_bg {
	height: 100%;
	position: absolute;
	width: 100%;
	bottom: 0px;
	opacity: 0;
}
.museum-detail .detail_picture {
	max-width: 100%;
}
.museum-detail .about_museum{display:flex;}
.museum-detail .side{
	float:none;
	width:435px;
}
.museum-detail .side .address{font-size: 14px;}
.museum-detail .side .address .title{}
.museum-detail .side .address .text{
	margin: 20px 0 20px;
}
.museum-detail .side .shedule {
	border-top: 1px solid #4d4d4d;
	border-bottom: 1px solid #4d4d4d;
	padding: 20px 0 20px;
}
.museum-detail .side .address .title {
	font-size: 20px;
	margin-bottom: 9px;
}
.museum-detail .side .shedule .body {
	margin: 20px 0px 20px;
}
.museum-detail .side .shedule .body .day{
	display: flex;
	justify-content: space-between;
}
.museum-detail .side .shedule .body .time{}
.museum-detail .side .аddit_Info{color: #676767;}
.museum-detail .side .tiket {
	text-transform: uppercase;
	margin: 25px 0;
	width: 100%;
}

.museum-detail .article{flex-basis: 860px;}


.museum-detail .tiket_line {
	border-top: #d5d5d5 1px solid;
	display: flex;
	justify-content: space-between;
	margin: 7px 0 9px;
	padding: 17px 0 17px;
}
.museum-detail .tiket_line:last-child{
	border-bottom: #d5d5d5 1px solid;
}
.museum-detail .tiket_line .name{}
.museum-detail .tiket_line .name .prise{}



.museum-detail .gallery {
	overflow: hidden;
	width: 100%;
	height: 350px;
	position: relative;
	margin: 0 auto;
}
.museum-detail .gallery .gallery-2 {
	position: absolute;
	width: 150%;
	left: -25%;
}
.museum-detail .gallery .gallery {}
.museum-detail .gallery .gallery .image{
	text-align: center;
}
.museum-detail .gallery .gallery .image img {
	height: auto;
	display: inline-block;
	max-width: 100%;
	max-height: 350px;
}
.gallery .lSAction a {
	background-color: rgba(255, 255, 255, 0.1);
	height: 100%;
	top: 15px;
	background-image: none;
	width: 15%;
}

.museum-detail .gallery .lSAction .lSPrev {left:15%}
.museum-detail .gallery .lSAction .lSNext {right:15%}


@media screen and (max-width: 768px) {
	.museum-detail .about_museum{flex-direction: column;}
	.museum-detail .article {
		flex-basis: 0; 
	}
	.museum-detail .side {
		width: auto;
	}
}

.work-calendar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calendar-header__btns{
    display: flex;
    gap: 10px;
}
.nav-btn {
    background-color: transparent;
    border: 0px solid transparent;
    outline: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 20px;
}
.nav-btn.prev{
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2214%22%20viewBox%3D%220%200%208%2014%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M6.65685%201.00001L1%206.65686L6.65685%2012.3137%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
}
.nav-btn.next{
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2214%22%20viewBox%3D%220%200%208%2014%22%20fill%3D%22none%22%3E%0A%3Cpath%20d%3D%22M1.00001%201.00001L6.65686%206.65686L1.00001%2012.3137%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
}
.nav-btn:hover:not(:disabled) {
    
}

    
    
.nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
#current-month{
    margin-bottom: 0;
}
.calendar-container {
    background: transparent;
    color: var(--white);
}

.week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.week-day {
    display: flex;
    justify-content: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    gap: 5px;
}

.calendar-day {
    text-align: center;
    padding: 5px 3px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(.other-month):not(.past) {
    background: var(--red);
    border-color: var(--red);
}

.calendar-day.current {
    border-color: var(--red);
}

.calendar-day.selected {
    background: var(--red);
    border-color: var(--red);
}

.calendar-day.past, .calendar-day.other-month {
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.past:hover , .calendar-day.other-month:hover{
    background: transparent;
    border-color: transparent;
}

.calendar-day.weekend {
    
}

.calendar-day.weekend.current {
    
}

/*.calendar-day.special-date {
    position: relative;
}

.calendar-day.special-date::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
}*/

.schedule-display {
    background: var(--white);
    color: var(--black);
    padding: 10px;
    border-radius: 300px;
    display: inline;
    width: fit-content;
}