
@font-face {
  font-family: 'Roboto';
  src:
    url('fonts/Roboto/Roboto-Regular.ttf') format('truetype'),
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    color: #555;
    margin: 70px auto;
}

p {
    font-size: 14px;
    line-height: 1.5;
}

h2 {
    color: #222;
    font-weight: 400;
}

/* alerts */

.alert-default {
    background: #fafafa;
    padding: 15px;
    text-align: justify;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.alert-default p {
    margin-top: 0;
}
.alert-default p:last-child {
    margin-bottom: 0;
}

.et-message {
    padding: 10px 15px 10px 35px;
    margin: 0 0 20px;
    font-size: 14px;
    position: relative;
    line-height: 1.5;
    border: 1px solid #e1e1e1;
    border-top: 2px solid #2e7d32;
    background: #fff;
    box-sizing: border-box;
    text-align: start;
}

.et-message:before {
    content: "\e15";
    color: #2e7d32;
    position:  absolute;
    font-family: 'xstore-admin-icons';
    left: 15px;
}

.et-message.et-error:before {
    color: #c62828;
}

.et-message.et-error {
    border-top-color: #c62828;
}

.et-message.et-warning:before {
    color: #f57f17;
}
.et-message.et-warning {
    border-top-color: #f57f17;
}

.et-message.et-info:before {
    color: #1565c0;
}
.et-message.et-info {
    border-top-color: #1565c0;
}

.et-message p {
    margin: 0 0 10px !important;
}
.et-message p:last-child {
    margin-bottom: 0 !important;
}

/* align class */
.align-start {
    text-align: start;
}
.align-center {
    text-align: center;
}
.align-end {
    text-align: end;
}

/* et-button */
.et-button {
    position: relative;
    padding: 9px 20px;
    display:  inline-block;
    background:  #222;
    color:  #fff;
    text-transform:  uppercase;
    border: 1px solid #222;
    cursor:  pointer;
    transition:  all .2s ease-in-out;
    text-decoration: none;
    font-size:  12px;
}

.et-button:hover,
.et-button:focus,
.et-button:active,
.et-button:hover:focus {
    opacity:  .9;
    color:  #fff;
    outline: none;
}

.et-button-green {
    background: #2e7d32;
    border-color: #2e7d32;
}

/* user info */

.user-img, .user-info {
    float: left;
    padding: 0 10px;
}

.etheme-user:before,
.etheme-user:after {
    content: '';
    display: table;
    clear: both;
}
.etheme-user + .etheme-user {
    margin-top: 10px;
    border-top: 1px solid #e1e1e1;
}

.etheme-user {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 -1px;
    border: 1px solid #e1e1e1;
    padding: 20px 10px 15px;
}


.token-holder{
    word-break: break-word;
}

.et-facebook-corporate{
    background: #386793;
    color: #e9eef3;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
}

.et-facebook-corporate:hover{
    background-color: #3880c4;
    color: #ffffff;
}
.et-popup.show{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    background-color: #ffffff;
    padding: 25px;
    min-width: 450px;
    transform: translate(-50%);
    border-radius: 10px;
}

.et-popup:not(.show), .page-block:not(.show){
    display: none;
}

.page-block.show{
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.et-close-popup{
    position: absolute;
    right: -30px;
    top: -30px;
    background-color: #fff;
    padding: 13px;
    font-size: 10px;
    border-radius: 50%;
}