@charset "utf-8";
/**css reset*/

html, body, div, input, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    direction: ltr;
    font-family: 'Google Sans';
    font-size: 10pt;
    color: #2c3e50;
    background-color: #ecf0f1;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 50%;
    min-height: 100vh;
    transition: all 0.4s ease-in-out;
    box-sizing: border-box;
    cursor: context-menu;
}

hr {
    background-image: linear-gradient(to left, transparent, #2c3e50, transparent);
    border: 0;
    height: 1px;
    margin: 10px 0;
    box-sizing: content-box;
}

.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: #206ea1;
}

a:hover {
    color: #2d8ac7;
}

h1 {
    text-align: center;
    font-size: 25pt;
    margin-bottom: 35px;
}

.container {
    position: absolute;
    right: 0;
    left: 0;
    width: calc(100% - 24px);
    max-width: 800px;
    margin: 10vh auto 10vh auto;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .35);
    padding: 25px;
    box-sizing: border-box;
}

.w50 {
    display: inline-block;
    width: calc(50% - 5px);
    vertical-align: top;
    direction: rtl;
    font-family: IRANSans;
}

.w50 img {
    display: block;
    width: calc(100% - 20px);
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.w50 .circle,
.w50 .minus {
    display: inline;
    vertical-align: middle;
    margin: 0 1px;
    font-size: 22px;
}

.w50 .minus {
    font-size: 14px;
}

.w50 .circle {
    font-size: 8px;
}

.w50 span {
    display: inline-block;
    margin: 0 5px;
}


.right,
.left {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.middle {
    display: inline-block;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    box-sizing: border-box;
    margin: 5px 0;
}

.label {
    display: block;
    font-weight: bold;
    font-size: 16pt;
}

.text {
    display: block;
    font-weight: bold;
    font-size: 16pt;
    text-align: center;
}

.btn {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border-radius: 35px;
    text-align: center;
    color: #ecf0f1;
    background: #2d8ac7;
    cursor: pointer;
    box-sizing: border-box;
}

.btn i {
    margin-right: 15px;
}

.btn:hover {
    background: #206ea1;
}

.textarea,
textarea {
    display: inline-block;
    border: solid 1px #2c3e50;
    border-radius: 10px;
    height: 90px;
    max-height: 90px;
    min-height: 90px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-family: 'Google Sans';
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.35);
    margin-top: 15px;
}

.textarea span {
    display: inline-block;
    margin: 0 10px;
}

.textarea .circle,
.textarea .minus {
    display: inline;
    vertical-align: middle;
    margin: 0 1px;
    font-size: 22px;
}

.textarea .minus {
    font-size: 22px;
}

.textarea .circle {
    font-size: 10px;
}

input {
    border: solid 1px #2c3e50;
    border-radius: 10px;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    font-family: 'Google Sans';
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.35);
}

.copyright {
    display: block;
    margin-top: 25px;
    text-align: center;
}

.copyright i {
    font-size: 16pt;
    vertical-align: middle;
}

.red {
    color: #f39c12ff;
    animation-name: redish;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

@keyframes redish {
    from {
        color: #f39c1266;
    }
    to {
    }
}

.msg {
    text-align: center;
    margin-top: 10px;
    color: #d35400;
}
