/*
Theme Name: Еl Corazón del Maestro
Author: Ivan Mouzykin
Description: Еl Corazón del Maestro theme.
Version: 1.0
*/

body{
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.lazyloaded{
	transition: all 200ms ease !important;
}



/*SWITCH*/

/* From Uiverse.io by mrhyddenn */ 
/* The switch - the box around the slider */
.switch {
 font-size: 17px;
 position: relative;
 display: inline-block;
 width: 62px;
 height: 35px;
}

/* Hide default HTML checkbox */
.switch input {
 opacity: 1;
 width: 0;
 height: 0;
}

/* The slider */
.slider {
 position: absolute;
 cursor: pointer;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0px;
/* background: #fff;*/
background-image: url(img/USA.svg);
/*background-size: cover;*/
    background-position: 20px center;
 transition: .4s;
 border-radius: 30px;
 border: 1px solid #ccc;
}

.slider:before {
 position: absolute;
 content: "";
 height: 34px;
    width: 34px;
    border-radius: 50%;
 left: -1px;
 top: -1px;
 bottom: 0;
 background-color: white;
 box-shadow: 0 2px 5px #999999;
 transition: .4s;
}

input:checked + .slider {
/* background-color: #5fdd54;*/
 background-image: url(img/Mexico.svg);
/* background-size: cover;*/
     background-position: -6px center;
 border: 1px solid transparent;
}

input:checked + .slider:before {
 transform: translateX(1.7em);
}