* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Oxygen', sans-serif;
    font-size: 18px;
    transition: all 200ms;
}

.button-btn {
    padding: 15px;
    background-color: #009d00; 
    transition: all 200ms;
    position: absolute;
    margin: 40px;
    color: #fff;
    cursor: url(images/clicking.jpg)4 12, auto ;
    transition: all 700ms ease;
}
.button-btn:hover {
    background-color: #4CDAFF;
    transition: all 700ms ease;
}
.btn_active {
    opacity: 0;
}
.modul-active {
  background: red;
}
.modul {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0, 0.5); 
}

.content {
    animation: popOpen 1s;
    top: 20%;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0, 0.2), 0 7px 20px 0 rgba(0,0,0, 0.2);
}
.close {
    color: #aaa;
    font-size: 30px;
}
.content__title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
}
.content__close {
    right: 14px;
    top: 2px;
    position: absolute;
    color: #777;
    font-weight: 900;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 500ms ease-in;
}
.close:hover,
.close:focus {
    color: #000;
    transition: all 500ms ease-in-out;
}
.content__text {
    margin: 5px 8px;
}
.content__info {
    padding: 8px 0;
}
.content__check {
    padding: 15px 10px;
    text-align: center;
}
.check__box {
    position: relative;
    padding-right: 5px;
    top: 2px;
}
.check__box a {
    color: orange;
    text-decoration: none;
}
.check__box a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.content__confirm {
    margin: 10px;
    position: relative;
}
.contetn__btn {
    padding: 10px;
    color: #fff;
    background: #4CDAFF;
    cursor: url(images/pint.jpg)4 12, auto;
}

.content__mouse {
    display: block;
    
}
.content__mouse:hover {
    
} 
.content__box {
    padding-left: 5px;
}
.contetn__select {
    margin-left: 10px;
    
}
.content__image {
    padding-top: 15px;
    position: relative;
    top: 6px;
    transition: transform .2s;
}
label {
    cursor: pointer;
}
label .content__image{
     
}
label .content__image:hover {
     -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration:1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

label:hover {
    transition: all 500ms ease;
    color: #000;
}
.gt-pulse:nth-child(1):hover img{
    animation: grow 1s linear infinite;
    -webkit-animation: grow 1s linear infinite;
    -moz-animation: grow 1s linear infinite;
}

.gt-pulse:nth-child(2):hover img {
    animation: rotating 1s linear infinite;
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
}

@keyframes grow {
  from { transform: none; }
	50% { transform: scale(1.4); }
	to { transform: none; }
}
@keyframes rotating {
 from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes popOpen {
    from {
        opacity: 0;
        top: 0;
    }
    to {
        opacity: 1;
        top: 20%;
    }
}