@import "./assets/icon/all.css";
@import "./index-responsive.css";

@font-face {
    font-family: 'Yekan';
    src: url('./assets/fonts/yekan/Yekan.eot');
    src: url('./assets/fonts/yekan/Yekan.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/yekan/Yekan.woff2') format('woff2'),
    url('./assets/fonts/yekan/Yekan.woff') format('woff'),
    url('./assets/fonts/yekan/Yekan.ttf') format('truetype'),
    url('./assets/fonts/yekan/Yekan.svg#Yekan') format('svg');
    font-weight: normal;
    font-style: normal;
}


html,
body {
    direction: rtl;
    padding: 0;
    margin: 0;
    font-family: Yekan, Arial;
    font-size: 14px;
    /*background-color: #f8f9fa;*/
    background-color: #f9fbff;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
    outline: none;
}

pre, button {
    font-family: Yekan, Arial;
    white-space: break-spaces;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

input, textarea, select {
    font-family: Yekan, Arial;
}

.rsw-editor {
    border: 1px solid #ecf4ff;
    background: #ecf4ff;
}

.rsw-editor .rsw-toolbar {
    background-color: #4ca0f5;
    border-bottom: 1px solid #4ca0f5;
}

.rsw-editor .rsw-toolbar .rsw-btn {
    color: #fff;
    font-size: 1.2em;
}

.rsw-editor .rsw-toolbar .rsw-btn:hover {
    color: #363636;
    background-color: #bee3fe;
}





/* Customize the label (the container) */
.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}
.checkbox input {
    display: none;
}


.checkbox__text {
    margin: 0 30px 0 0 ;
}

.checkbox__mark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50px;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkbox__mark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkbox__mark {
    background-color: #007aff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox__mark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkbox__mark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkbox__mark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}