/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
button.loading-btn {
    display: block;
    height: 20px;
    margin: 0 auto;
    padding-top: 0.4em;
    padding-right: 3em;
    padding-bottom: 0.4em;
    padding-left: 3em;
    font-size: 16px;
    font-weight: normal;
	color:#9c824a;
    /*border-radius: .4em;*/
    border: 1px solid #9c824a;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    /* vertical-align: middle; */
    transition: all 1s;
    line-height: 20px;
}
.button.loading-btn:hover{
	background-color:#9c824a;
	color:white;
}
.button.loading-btn:hover .spin .spinner::before {

    border: solid .1em rgba(255,255,255,.8);
    border-bottom-color: rgba(255,255,255,.2);

}

/* focus/disabled styles, you can change this for accessibility */
/* button.loading-btn:focus, button.loading-btn:disabled {
  outline: none;
  background: #aaa;
} */

/* This is the space for the spinner to appear, applied to the button */
.spin {
  padding-left: 6em;
  display: block;
}

/* position of the spinner when it appears, you might have to change these values */
.spin .spinner {
    left: -.4em;
    top: .7em;
    width: 2.5em;
    display: block;
    position: absolute;
}
/* spinner animation */
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

/* The actual spinner element is a pseudo-element */
.spin .spinner::before {
    content: "";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: solid .1em rgba(156,130,74,.8);
    border-bottom-color: rgba(156,130,74,.2);
    animation: .8s linear infinite spinner;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* optional, but it will affect the size if changed */
*, *::before, *::after {
  box-sizing: border-box;
}