


/* CSS Document */
/* plugin css */

.wpmdrp_box {
padding: 2%;
border: 1px solid #000000;
background-color: #fff;
margin-bottom: 10px;
}

.wpmdrp_box_info {
padding: 2%;
border: 1px solid #000000;
background-color:rgb(249, 190, 190);
margin-bottom: 10px;
}


/* checkbox slider settings */

input.wpmdrp_checkbox_slide[type="checkbox"] {
appearance: none;
height: 20px;
width: 50px;
background-color: #34384b;
border-radius: 50px;
position: relative;
transition: 300ms;
cursor: pointer;
outline: none;
border: 1px solid #000;
}

input.wpmdrp_checkbox_slide[type="checkbox"]:before {
content: "";
position: absolute;
height: 10px;
width: 10px;
background-color: #d5d5d5;
border-radius: 50%;
border: 1px solid #000;
left: 3px;
top: 3px;
transition: 300ms;
}

input.wpmdrp_checkbox_slide[type="checkbox"]:checked {
background-color: #cfffde;
}

input.wpmdrp_checkbox_slide[type="checkbox"]:checked:before {
background-color: #22c900; /* 5acbff*/
top: 4px;
left: 30px;
height: 15px;
width: 15px;

}


/* template css */

.mastodon_btn {
position: fixed;
right: 20px;
bottom: 100px;
width: 50px;
height: 50px;
padding: 10px;
background-color: #563ACC;
color: white;
text-decoration: none;
border-radius: 5px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
z-index: 9999;
}

.mastodon_btn:hover {
background-color: #717171;
box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}


