#spoiler-arrow{
width: 0;
height: 0;
position: relative;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
float: right;
margin-top: 4px;
margin-right: 24px;
}
#spoiler-title .up{
border-bottom: 10px solid #666;
}
#spoiler-title .down{
border-top: 10px solid #666;
}
#spoiler-block #spoiler-content{
transition: max-height 0.5s;
-webkit-transition: max-height 0.5s;
-moz-transition: max-height 0.5s;
-o-transition: max-height 0.5s;
overflow: hidden;
padding: 0px 10px 10px 30px;
}
#spoiler-block{
background-color: #f9f9f9;
border-radius: 6px;
color: #666;
border-bottom: 1px solid #96D5F1;
font-size: 13px;
}
#spoiler-block .closed{
max-height: 0px;
padding: 0px !important;
}
#spoiler-block li{
border-bottom: 1px dotted #ddd;
}
#spoiler-title{
cursor: pointer;
width: 100%;
display: block;
padding: 10px;
}
.sendwp-page{
padding: 20px;
position: relative;
margin: auto;
display: block;
width: 80%;
max-width: 800px;
color: #0D2842;
font-size: 15px;
}
.sendwp-page .logo{
margin: 0px auto 100px;
display: block;
}
.sendwp-page hr{
margin: 25px 0px;
}
#sendwp-enabled-status{
margin-left: 15px;
}
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 44px;
height: 24px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 3px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #84cc1e;
}
input:focus + .slider {
box-shadow: 0 0 1px #84cc1e;
}
input:checked + .slider:before {
-webkit-transform: translateX(18px);
-ms-transform: translateX(18px);
transform: translateX(18px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}