.nav_tab_active {
    color: #00a0d2;
}

.wpmobi .container {
    padding: 10px;
}

.padding-10 {
    padding: 10px;
}
.wpmobi .welcome-panel-row {
    margin: 40px;
}
.wpmobi .horizontal-center {
    margin: 0 auto;
    width: 450px;
    text-align: center;
}

.wpmobi .loader-center {
    width: 150px;
    margin: 0 auto;
    margin-top: 20px;
}

.wpmobi .build-download, .wpmobi .build-publish {
    width: 40%;
    float: left;
    margin: 10px;
    padding: 10px;
}

.wpmobi .build-download {
    border-right: #2B6FB6 solid thin;
}

.wpmobi-plus::after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    font-weight: bolder;
    text-indent: 0 !important;
    margin-right: 5px;
}

.wpmobi-minus::after {
    content: "\2212";
    color: black;
    font-weight: bold;
    float: right;
    font-weight: bolder;
    text-indent: 0 !important;
    margin-right: 5px;
}

/**
 **Loader css starts
 */

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/**
 ** Loader css ends
 */

/**
 ** Download button css starts
 */

.buttonDownload {
    display: inline-block;
    position: relative;
    padding: 10px 25px;

    background-color: #4CC713;
    color: white;

    font-family: sans-serif;
    text-decoration: none;
    font-size: 0.9em;
    text-align: center;
    text-indent: 15px;
}

.buttonDownload:hover {
    background-color: #333;
    color: white;
}

.buttonDownload:before, .buttonDownload:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 15px;
    top: 52%;
}

/* Download box shape  */
.buttonDownload:before {
    width: 10px;
    height: 2px;
    border-style: solid;
    border-width: 0 2px 2px;
}

/* Download arrow shape */
.buttonDownload:after {
    width: 0;
    height: 0;
    margin-left: 3px;
    margin-top: -7px;

    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: transparent;
    border-top-color: inherit;

    animation: downloadArrow 2s linear infinite;
    animation-play-state: paused;
}

.buttonDownload:hover:before {
    border-color: #4CC713;
}

.buttonDownload:hover:after {
    border-top-color: #4CC713;
    animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
    /* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
    0% {
        margin-top: -7px;
        opacity: 1;
    }

    0.001% {
        margin-top: -15px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        margin-top: 0;
        opacity: 0;
    }
}
/**
 ** Download button css ends.
 */