button {
    cursor: pointer;
}

.boxGive img{
    cursor: grab;
}

.form-control{
    font-size: 1.05dvw;
    color: #634A20;
    background-color:  #D2E6B3;
}

.form-control:focus{
    color: #634A20;
    background-color:  #D2E6B3;
}

.form-check-input {
    cursor: pointer;
    border-color: #634A20;
    background-color:  #D2E6B3;
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e")
}

.form-check-input:checked {
    border-color: #634A20;
    background-color:  #D2E6B3;
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.music-control {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

input[type="range"] {
    top: 0;
    left: 30px;
    margin: 5px;
    width: 5%;
    line-height: 20px;
}

.play-icon {
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
    color: #0071b8;
}

.mute-icon {
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
    color: #0071b8;
}

.scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	border-radius: 15px;
	background-color: #D2E6B3;
}

.scrollbar::-webkit-scrollbar
{
	width: 15px;
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #82ab44;	
	background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, .2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, .2) 50%,
        rgba(255, 255, 255, .2) 75%,
        transparent 75%,
        transparent
    );
}

#player {
    width: 100%;
    height: 100%;
    position: relative;
}
#player iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}