﻿/*begin master*/
.navbar .navbar-nav li:hover {
    background-color: yellowgreen;
}

.navbar-nav {
    padding-top: 0px;
    padding-bottom: 0px;
}

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
}

a.nav-link {
    padding-top: 10px;
}


/* Get rid of link padding to make the above easier */
.navbar-nav&gt;li&gt;a {
    padding-top: 0px;
    padding-bottom: 0px;
}

/*EDIT top and bottom padding to shrink and grow image */
.navbar-brand {
    padding: 0px 0px;
}

.special-img {
    position: relative;
    top: -5px;
    float: left;
    left: -5px;
}
/*end master*/


/*spinner*/
.fullscreen-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

    .fullscreen-loader .progress-circular {
        -ms-transform: translate(-50%, -50%); /* IE 9 */
        -webkit-transform: translate(-50%, -50%); /* Safari */
        -o-transform: translate(-50%, -50%); /* Opera */
        -moz-transform: translate(-50%, -50%); /* Firefox */
        transform: translate(-50%, -50%); /*default*/
        position: relative;
        top: 50%;
        left: 50%;
        z-index: 10000;
    }

    .fullscreen-loader .loader-backdrop {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: transparent;
        z-index: 9999;
        opacity: 0.5;
    }

.spinner-alone {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #f6bb42;
    z-index: 9999;
    -webkit-animation: rotation .5s infinite linear;
    -moz-animation: rotation .5s infinite linear;
    -o-animation: rotation .5s infinite linear;
    animation: rotation .5s infinite linear;
}

/*loader*/
.loader-logo-container {
    background: #22baa0 !important;
    width: 86px;
    height: 86px;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin: -43px;
    z-index: 9999;
}

    .loader-logo-container p {
        font-size: 20px;
        top: 50%;
        left: 50%;
        position: absolute;
        margin-left: -20px;
        margin-top: -14px;
        color: #fff;
        font-weight: bold;
    }

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

html {
    font-size: 14px;
}

.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 10px;
  font-size: 24px;
  line-height: 1.9;
  border-radius: 35px;
  outline: 0px !important;
}
