/* 
  * Button Style 
  */
.codexse-button .cdx-btn:focus,
.codexse-button .cdx-btn:active {
    box-shadow: none !important;
}

.codexse-button .cdx-btn-outline-light {
    border-color: #c8c8c8;
    color: #c8c8c8;
}

.codexse-button {
    display: inline-block;
}

.codexse-button .codexse-btn-effect-5,
.codexse-button .codexse-btn-effect-6,
.codexse-button .codexse-btn-effect-10 {
    overflow: hidden;
}

.codexse-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 0;
    transition: .3s;
}

.codexse-button .icon svg {
    max-width: 100%;
    max-height: 100%;
}

.codexse-button .cdx-btn {
    border-radius: 6px;
    position: relative;
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease-in-out 0s;
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-weight: 700;
}

.button-align-icon-left .icon {
    float: left;
}

.button-align-icon-left .text {
    float: right;
}

.button-align-icon-right .icon {
    float: right;
}

.button-align-icon-right .text {
    float: left;
}

.button-align-icon-top .icon,
.button-align-icon-bottom .icon {
    display: block;
}

.button-align-icon-top .text,
.button-align-icon-bottom .text {
    display: block;
}

.button-align-icon-top a.cdx-btn {
    display: flex;
    flex-flow: column-reverse nowrap;
}

/* Button Style */
.codexse-button:not(.codexse-btn-style-0) .cdx-btn {
    background-color: rgb(var(--accent-color));
    color: #ffffff;
}

.codexse-button .cdx-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(var(--accent-color));
    transition: 0.5s;
    z-index: -1;
}

.codexse-btn-style-1 .cdx-btn:before {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.codexse-btn-style-1 .cdx-btn:hover:before {
    opacity: 1;
}

.codexse-btn-style-2 .cdx-btn:before {
    width: 0%;
    height: 100%;
}

.codexse-btn-style-2 .cdx-btn:hover:before {
    width: 100%;
}

.codexse-btn-style-3 .cdx-btn:before {
    width: 0%;
    height: 100%;
    left: auto;
    right: 0;
}

.codexse-btn-style-3 .cdx-btn:hover:before {
    width: 100%;
}

.codexse-btn-style-4 .cdx-btn:before {
    width: 100%;
    height: 0%;
}

.codexse-btn-style-4 .cdx-btn:hover:before {
    height: 100%;
}

.codexse-btn-style-5 .cdx-btn:before {
    width: 100%;
    height: 0%;
    top: auto;
    bottom: 0;
}

.codexse-btn-style-5 .cdx-btn:hover:before {
    height: 100%;
}

.codexse-btn-style-6 .cdx-btn:before {
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    margin: auto;
}

.codexse-btn-style-6 .cdx-btn:hover:before {
    width: 100%;
}

.codexse-btn-style-7 .cdx-btn:before {
    width: 0px;
    height: 0px;
    border-radius: 100px;
    right: 0;
    bottom: 0;
    margin: auto;
}

.codexse-btn-style-7 .cdx-btn:hover:before {
    width: 300px;
    height: 300px;
}

@media only screen and (max-width: 768px) {
    .codexse-button .cdx-btn {
        padding: 10px 20px;
    }
}