.sc_button_wrap:not([class*="sc_align_"]) {
    display: inline-block;
}


/* Normal button */

.sc_button {
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 1.5em 3em;
    background-position: center center;
    background-repeat: repeat;
    overflow: hidden;
    background-color: #efa758;
    color: #fff;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
}

.sc_button:hover {
    background-color: #007fc5;
}

.sc_button+.sc_button {
    margin-left: 1em;
}

.sc_button_subtitle {
    font-size: 0.85em;
    line-height: 1.25em;
    text-transform: none;
    display: block;
}

.sc_button_icon,
.sc_button_text {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}

.sc_button_icon {
    font-size: 2em;
    line-height: 1.25em;
    font-weight: 400;
    font-style: normal;
}

.sc_button_icon img {
    max-height: 2.5em;
    width: auto;
}

.sc_button_icon_left .sc_button_icon {
    margin-right: 0.8em;
}

.sc_button_icon_right .sc_button_icon {
    float: right;
    margin-left: 0.8em;
}

.sc_button_icon_top .sc_button_icon {
    display: block;
    margin-bottom: 0.25em;
    text-align: center;
}


/* Sizes */

.sc_button.sc_button_size_small {
    padding: 1em 2.5em;
}

.sc_button.sc_button_size_small .sc_button_icon img {
    max-height: 1.6em;
    width: auto;
}

.sc_button.sc_button_size_large {
    font-size: 1.25em;
}

.sc_button.sc_button_size_large .sc_button_icon img {
    max-height: 4em;
    width: auto;
}


/* Button with image */

.sc_button_bg_image {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sc_button.sc_button_bg_image,
.sc_button.sc_button_bg_image:hover {
    color: #fff !important;
}

.sc_button_bg_image .sc_button_text {
    position: relative;
    z-index: 2;
}

.sc_button_bg_image:before {
    content: ' ';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.sc_button_bg_image:hover:before {
    background-color: rgba(0, 0, 0, 0.75);
}


/* Bordered button */

.elementor-button-info .elementor-button-wrapper .elementor-button,
.sc_button_bordered {
    background: none !important;
    border: 2px solid #efa758;
    color: #efa758;
}

.sc_button_bordered:hover {
    border-color: #007fc5;
    color: #007fc5;
}


/* Simple button (link with arrow) */

.sc_button_simple {
    display: inline-block;
    background-color: transparent;
    color: #efa758;
    position: relative;
    padding: 0 1.8em 0 0;
}

.sc_button_simple:hover {
    color: #000;
    background-color: transparent;
}

.sc_button.sc_button_simple:before,
.sc_button.sc_button_simple:after {
    content: '\e911';
    font-family: 'trx_addons_icons';
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0;
    line-height: inherit;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
}

.sc_button.sc_button_simple:before {
    right: 20px;
    opacity: 0;
}

.sc_button.sc_button_simple:hover:before {
    opacity: 1;
    right: 0;
}

.sc_button.sc_button_simple:hover:after {
    opacity: 0;
    right: -20px;
}

.sc_button_simple.sc_button_icon_left .sc_button_icon {
    margin-right: 0.4em;
}

.sc_button_simple.sc_button_icon_right .sc_button_icon {
    margin-left: 0.4em;
}