﻿.subscribe-android {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fc5059), color-stop(1, #fc5059));
    background:-moz-linear-gradient(top, #fc5059 5%, #fc5059 100%);
    background:-webkit-linear-gradient(top, #fc5059 5%, #fc5059 100%);
    background:-o-linear-gradient(top, #fc5059 5%, #fc5059 100%);
    background:-ms-linear-gradient(top, #fc5059 5%, #fc5059 100%);
    background:linear-gradient(to bottom, #fc5059 5%, #fc5059 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc5059', endColorstr='#fc5059',GradientType=0);
    background-color:#fc5059;
    -moz-border-radius:26px;
    -webkit-border-radius:26px;
    border-radius:26px;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    padding:16px 31px;
    text-decoration:none;
}

.circle {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin: 4px;
}

.hor-scroll::-webkit-scrollbar {
    display: none;
}

/* label focus color */
.input-field input:focus + label {
    color: #A1A1A1 !important;
}
/* label underline focus color */
.row .input-field input:focus {
    border-bottom: 1px solid #A1A1A1 !important;
    box-shadow: 0 1px 0 0 #A1A1A1 !important
}

/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */
.mouse-icon {
    border: 2px solid #000;
    border-radius: 16px;
    height: 40px;
    width: 24px;
    display: block;
    z-index: 10;
    opacity: 0.7;
}
.mouse-icon .wheel {
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.mouse-icon .wheel {
    position: relative;
    border-radius: 10px;
    background: #000;
    width: 2px;
    height: 6px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
}
@-webkit-keyframes drop {
    0% {
        top: 5px;
        opacity: 0;
    }
    30% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}
@keyframes drop {
    0% {
        top: 5px;
        opacity: 0;
    }
    30% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}