﻿body {
    padding:0;
    margin:0;
}

.marginBottomBig {
    margin-bottom: 40px;
}

.marginBottomMedium {
    margin-bottom: 20px;
}

.marginBottomSmall {
    margin-bottom: 10px;
}

.relative{
    position:relative;
}

.fullwidth{
    width:100%;
}

.mediumImage{
    max-width:80%;
}


.clear::after {
    display: block;
    content: "";
    clear: both;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

/*@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1740px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1860px;
    }
}*/


input.apple-switch {
    position: relative;
    -webkit-appearance: none;
    outline: none;
    width: 50px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #fff;
    margin-bottom: -10px;
    margin-top: 15px;
}

    input.apple-switch:after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        background: transparent;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
        transition: left ease .3s;
    }

    input.apple-switch:checked {
        box-shadow: inset 20px 0 0 0 #4ed164;
        border-color: #4ed164;
    }

        input.apple-switch:checked:after {
            left: 20px;
            box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
            transition: left ease .3s;
        }

@-webkit-keyframes barrelRoll {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

#settings {
    -webkit-animation: barrelRoll 2s infinite linear;
}
}