* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    --c-grean: #00875f;
    --c-gray1: #4b4b4b;
    --c-gray2: #737373;
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #333;
    min-width: 350px;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a.text:active,
a.text:hover,
a:visited,
a.text {
    text-decoration: none;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

i,em{
    font-style: normal;
}

body {
    font-size: 14px;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: #fff;
    color: var(--c-gray2);
}

.fbc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fb {
    display: flex;
    justify-content: space-between;
}

.btn-loading{
    width: 20px;
    height: 20px;
    margin: 0 12px;
    border-width: 4px;
    border-style: solid;
    border-color: #e3e3e3 rgb(141 141 141) rgb(141 141 141);
    border-image: initial;
    border-radius: 50%;
    animation: 1s linear 0s infinite normal none running spin2;
    display: none;
}

@keyframes spin2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn{
	font-size: 15px;
	line-height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-radius: 8px;
	padding: 10px 30px;
	margin: 15px 0;
	color: #ffe336;
}