.btn {
    border-radius: 5px;
    flex-shrink: 0;
    transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out,box-shadow .3s ease-in-out;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    box-shadow: none;
}

.btn.dark {
    background-color: #292929;
    border: 2px solid #fecc00;
    color: #fff;
}

.btn.darkH:hover,
.btn.darkH.active {
    background-color: #292929;
    border-color: #fecc00;
    color: #fff;
}

.btn.yellow {
    background-color: #fecc00;
    border: 2px solid #fecc00;
    color: #000;
}
.btn.yellow-outline{
    border-color: #fecc00;
    color: #fecc00;
    background-color: transparent;
}
.btn.yellow-outlineH:hover,
.btn.yellow-outlineH.active{
    border-color: #fecc00;
    color: #fecc00;
    background-color: transparent;
}
.btn.yellowH:hover,
.btn.yellowH.active {
    background-color: #fecc00;
    border-color: #fecc00;
    color: #000;
}

.btn.red,
.btn.redH:hover,
.btn.redH.active {
    background-color: #c52f0a;
    border-color: #c52f0a;
    color: #fff;
}

.btn.green {
    background-color: #2bb125;
    border-color: #2bb125;
    color: #fff;
}

.btn.greenH:hover,
.btn.greenH.active {
    background-color: #2bc525;
    border-color: #2bc525;
    color: #fff;
}

.btn.dark-gray {
    color: #ddd;
    border: 1px solid #545454;
    background-color: #3a3a3a;
}

.btn.dark-grayH:hover {
    color: #333333;
    background-color: #ddd;
}

.btn.light-gray,
.btn.light-grayH:hover {
    color: #ddd;
    border: 1px solid #555555;
    background-color: #555555;
}
.btn.white{
    color: #333;
    border: 2px solid #FFFFFF;
    background-color: #FFFFFF;
}
.btn.white-borderH:hover{
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    background-color: transparent;
}
.btn.small {
    font-weight: 300;
    font-size: .9rem;
}

.btn.medium {
    font-weight: 400;
    font-size: 1.3rem;
}

.btn.big {
    font-weight: bold;
    font-size: 1.5rem;
}

.row-btn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.row-btn > * {
    margin: .25rem;
}

.fixed-btn {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    opacity: .5;
}
.fixed-btn.btn,
.fixed-btn > button {
    height: 60px;
    width: 60px;
    flex-grow: 1;
}

.fixed-btn:hover,
.fixed-btn.active,
.fixed-btn:hover > button,
.fixed-btn.active > button {
    opacity: 1;
    order: 1;
}

.fixed-btn .dop-btn-panel {
    display: none;
}

.fixed-btn.active .dop-btn-panel {
    display: flex;
    order: 0;
}

.fixed-btn .dop-btn-panel > .btn {
    margin-right: .25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .8rem;
    padding: .5rem;
}

.btn > .badge {
    border-radius: 50%;
    margin-left: .25rem;
    padding: .2rem .35rem;
}

.btn.buildex{
    transition: all .7ms ease-in-out;
    z-index: 1;
    overflow: hidden;
    background-color: #0800ce;
    background: linear-gradient(112deg,#0d05bd 0,#281fff 100%);
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    position: relative;
}
.btn.buildex::before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(112deg,#281fff 0,#0d05bd 100%);
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}
.btn.buildex:hover::before {
    opacity: 1;
}
@media (max-width: 992px) {
    .fixed-btn {
        flex-direction: column;
    }
    .fixed-btn.btn,
    .fixed-btn > button {
        width: 45px;
        max-height: 45px;
        min-height: 45px;
        order: 1;
    }

    .fixed-btn.active .dop-btn-panel {
        position: relative;
        flex-direction: column;
        width: 100%;
        right: 0;
        order: 0;
    }

    .fixed-btn .dop-btn-panel > .btn {
        margin: 0 0 .2rem 0;
        min-width: 45px;
        min-height: 45px;
    }

    .fixed-btn .dop-btn-panel > .btn > span {
        display: none;
    }
}

.btn-blink {
    overflow: hidden;
    position: relative;
    flex-basis: inherit;
}
.btn-blink::after {
    content: "";
    display: block;
    width: 30px;
    height: 200px;
    margin-left: 60px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    position: absolute;
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all 0.1s;
    animation-name: btnBlink;
    animation-duration: 8s;
    animation-delay: 0.1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes btnBlink {
    0% {
        left: -50px;
        margin-left: 0px;
    }
    70% {
        left: -50px;
        margin-left: 0px;
    }
    80% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}
