.bg {
    max-width: 100%;
    max-height: 100%;
    border-radius: 3px;
}

.container .row-control {
    height: 380px;
}

.typo2-control {
    direction: rtl !important;
    padding: 20px;
}

.container .row .col-sm-7 {
    padding: 10px;
}

.text-control {
    padding-top: 30px;
}

.handle-list {
    background-color: #d2dde6;
    text-align: center;
}

.handle-list ul li {
    display: inline-block;
    padding: 4vh;
}

.handle-list ul {
    padding-left: 10em;
    padding-right: 10em;
}

.container .row .col-md-6 {
    font-size: 1.2em !important;
}

@media only screen and (max-width: 940px) {
    .container .row-control {
        height: 300px;
    }
}

@media only screen and (max-width: 650px) {
    .container .row-control {
        height: 350px;
    }
}

@media only screen and (max-width: 520px) {
    .container .row-control {
        height: 380px;
    }
}

@media only screen and (max-width: 360px) {
    .container .row-control {
        height: 400px;
    }
}

@media only screen and (max-width: 346px) {
    .container .row-control {
        height: 440px;
    }
}

@media only screen and (max-width: 321px) {
    .container .row-control {
        height: 470px;
    }
}


/* BTN WIGGLE */

.wiggle {
    display: block;
    font-family: 'Droid Sans Mono', sans-serif;
    color: #fff !important;
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    font-weight: bold;
    -webkit-animation: btnWiggle 2s infinite;
    -moz-animation: btnWiggle 2s infinite;
    -o-animation: btnWiggle 2s infinite;
    animation: btnWiggle 2s infinite;
}

.subtext {
    font-size: 14px;
    letter-spacing: .05em;
    text-align: center;
}

.button-cad {
    font-size: 1.3em !important;
}


/* animation */

@-webkit-keyframes btnWiggle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    2% {
        -webkit-transform: rotate(-3deg);
    }
    3.5% {
        -webkit-transform: rotate(3deg);
    }
    5% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-o-keyframes btnWiggle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    2% {
        -webkit-transform: rotate(-3deg);
    }
    3.5% {
        -webkit-transform: rotate(3deg);
    }
    5% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes btnWiggle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    2% {
        -webkit-transform: rotate(-3deg);
    }
    3.5% {
        -webkit-transform: rotate(3deg);
    }
    5% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}