/*
 Theme Name:   Divi Child
 Description:  Divi Child Child Theme
 Template:     Divi
 Version:      1.0.0
*/


.loginForm {
    float: left;
    background: #09127d;
    width: 100%;
    color: #FFF;
    padding: 50px;
}

.loginForm .input {
    float: left;
    padding-right: 20px;
}

.loginForm .input label {
    float: left;
    clear: left;
    padding-bottom: 5px;
}

.loginForm .input input[type="text"], .loginForm .input input[type="password"] {
    float: left;
    clear: left;
    padding: 10px;
    text-transform: none;
    min-width: 320px;
    font-size: 16px;
}

.loginForm button {
    float: left;
    padding: 10px;
    margin-top: 28px;
    cursor: pointer;
    border: 1px solid #FFF;
    color: #FFF;
    background: transparent;
    font-size: 16px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.loginForm button:hover {
    border: 1px solid #09127d;
    color: #09127d;
    background: #FFF;
}

.user-logged-in {
    position: fixed;
    width: 100%;
    background: #09127d;
    bottom: 0;
    left: 0;
    padding: 10px;
    z-index: 9;
}

.user-logged-in span {
    float: right;
    margin-top: 5px;
    margin-right: 15px;
    font-size: 16px;
}

.user-logged-in form {
    float: right;
}

.user-logged-in form button {
    padding: 7px;
    cursor: pointer;
    font-size: 16px;
}

.users-online h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 0;
    padding-bottom: 25px;
}

.users-online ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.users-online ul li {
    float: left;
    clear: left;
    list-style: none;
    color: #333;
}

.users-online ul li:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background: #84dc1c;
    border-radius: 50%;
}

.users-online ul li span:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('images/phone.svg');
    background-size: 24px 24px;
    margin-bottom: -5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* 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: #dd1d0a;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:after {
    content: "Offline";
    display: inline-block;
    margin-left: 70px;
    margin-top: 5px;
}

input:checked + .slider {
    background-color: #84dc1c;
}

input:checked + .slider:after {
    content: "Online";
}

input:focus + .slider {
    box-shadow: 0 0 1px #84dc1c;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#status-form {
    color: #000;
    padding: 15px;
}

#status-form p {
    padding-bottom: 20px;
}

#status-form button {
    display: block;
    margin-top: 30px;
    padding: 10px 20px;
    cursor: pointer;
}

.coach-status {
	position: relative;
}

.coach-status:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #000;
	border-radius: 50%;
	margin-right: 7px;
}

.coach-status.online:before {
	background: #3e7c02;
}

.coach-status.offline:before {
	background: #d90e04;
}


