@font-face {
	font-family: 'Acrom';
  	font-display: fallback;
	src: url('../fonts/Acrom-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

a, a:focus, a:active {
	text-decoration: unset; 
    color: #40D2FB;
}

* {
	margin: 0; 
	padding: 0; 
	box-sizing: border-box;
}

html, body {
	width: 100%; 
	height: 100%; 
}

body {
    padding: 15px 15px 25px 15px;
    font-family: 'Acrom';
    line-height: 130%;
    font-size: 16px;
    overflow: hidden;
    background-color: #fff;
}

.player {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    height: 100%;
}

.logo {
	display: inline-block;
}

.logo img {
	width: 120px;
	height: 50px;
}

.btn {
    display: flex;
    align-items: center;
    border: unset;
    background: unset;
    color: #40D2FB;
    font-size: 18px;
    text-decoration: unset;
    cursor: pointer;
    font-family: 'Acrom';
}

.btn span {
    display: inline-block;
    width: 200px;
    text-align: left;
}

.btn::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background-color: #40D2FB;
    color: #ffffff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
    box-shadow: 0px 6px 20px -4px rgba(89, 185, 255, 0.7);
    background-size: 11px;
}

.btn-play::before {
	background-image: url(../img/Shape.png);
}

.btn-play.playing::before {
    background-image: url(../img/pause-bars.png);
    background-size: 14px;
}

.text {
    width: calc(100% - 70px);
    vertical-align: middle;
    display: inline-block;
    float: right;
    font-family: sans-serif;
    letter-spacing: .5px;
}

.card-title {
    text-align: center;
}
.calendar-date-1 {
    font-size: 28px;
    line-height: 38px;
}
.calendar-date-2 {
    font-size: 18px;
}



@media (orientation: portrait) {
	.other-day {
	    display: inline-block;
	    line-height: 100%;
	    font-size: 14px;
	    text-transform: uppercase;
	    font-weight: bold;
	    position: relative;
	}

	@media (max-width: 300px) and (max-height: 400px) {
		body {
			padding: 10px;
		}
		.logo img {
		    width: 100px;
		    height: auto;
		}

		.calendar-date-1 {
		    font-size: 22px;
		    line-height: 28px;
		}
		.calendar-date-2 {
		    font-size: 13px;
		}

		.card-text {
			font-size: 13px; 
			line-height: 100%; 
		}

		.other-day {
			padding: 11px 15px;
		}

		.btn {
			font-size: 13px;
		}

		.btn span {
			width: 140px;
		}
	}
}


@media (orientation: landscape)  {
	@media (min-width: 600px) {
		.player {
		    flex-direction: row;
		    flex-wrap: nowrap;
		    width: 100%;
		    max-width: unset;
		}
		.calendar-date-1 {
		    font-size: 19px;
		    line-height: 20px;
		}
		.calendar-date-2 {
		    font-size: 13px;
		}
		.card-text {
		    font-size: 12px;
		    line-height: 120%;
		}

		.btn {
			font-size: 11px; 
			text-transform: uppercase;
		}
		.btn span {
		    width: 138px;
		}

		.logo img {
			width: 90px;
			height: auto;
		}
		.other-day {
		    display: inline-block;
		    width: 100px;
		    line-height: 100%;
		    font-size: 14px;
		    text-transform: uppercase;
		    font-weight: bold;
		    margin-bottom: -46px;
		    position: relative;
		}
		.other-day span {
		    font-size: 11px;
		    text-transform: lowercase;
		}

		.other-day::after {
		    display: inline-block;
		    width: 0px;
		    height: 0px;
		    content: '';
		    position: absolute;
		    right: 0px;
		    top: 3px;
		    border: 9px solid transparent;
		    border-left: 14px solid #40D2FB;
		}		
	}





	@media (max-width: 300px) and (max-height: 250px) {
		.logo img {
		    width: 82px;
		    height: auto;
		}


	}


	@media (max-width: 599px) {
		.other-day {
		    display: inline-block;
		    line-height: 100%;
		    font-size: 14px;
		    text-transform: uppercase;
		    font-weight: bold;
		    position: relative;
		}
	}


	@media (max-width: 300px) and (max-height: 300px) {
		.calendar-date-1 {
		    font-size: 22px;
		    line-height: 33px;
		}

		.btn {
			font-size: 14px;
		}

		.btn span {
			
		}
	}

}
