/*  ====================================================================================================
    website font
    ==================================================================================================== */

@font-face {
    font-size: 17px;
    text-align: left;
    font-weight: 400;
    line-height: 20px;
    font-style: normal;
    letter-spacing: 0em;
    font-family: Roboto;
    src: url("../fonts/RobotoSlab-VariableFont_wght.ttf");
}

/*  ====================================================================================================
    website configurations
    ==================================================================================================== */

* {
    font-family: Roboto, Tahoma, Arial;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* ---------------------------------------------------------------------------------------------------- */

html {
    --white: #e5e5e5;
    --whiteDark: #c1c1c1;

    --green: #3ba354;
    --greenLight: #41d747;
    /* color: #4dff54; */

    --red: #de475a;
    --redLight: #ff4d63;

    --yellow: #f4b05f;
    
    --blue: #00abe9;
    /* color: #899cf7 */

    --blackDark: #161616;
    --blackLight: #2a2929;    
}

body {
    direction: ltr;
    color: var(--white);
    background-color: var(--blackLight);
}

/* ---------------------------------------------------------------------------------------------------- */

a {
    color: var(--white);
    text-decoration: none;
}

a:hover {
    color: var(--red);
}

/* ---------------------------------------------------------------------------------------------------- */

ul {
    margin-block-end: 0;
    list-style-type: none;
    margin-block-start: 0;
    padding-inline-start: 0;
}

/* ---------------------------------------------------------------------------------------------------- */

p {
    margin-block-end: 0;
    margin-block-start: 0;
}

/* ---------------------------------------------------------------------------------------------------- */

label {
    display: inline-block;
}

/* ---------------------------------------------------------------------------------------------------- */

sup {
    color: var(--redLight);
    font-size: 1em;
}

/* ---------------------------------------------------------------------------------------------------- */

button,
input {
    font-size: 13px;
    line-height: normal;
    display: inline-block;
    background-color: transparent;
    font-family: Roboto, Tahoma, Arial;

    transition: box-shadow 150ms;
    -o-transition: box-shadow 150ms;
    -ms-transition: box-shadow 150ms;
    -moz-transition: box-shadow 150ms;
    -webkit-transition: box-shadow 150ms;
}

input[type="text"],
input[type="number"],
input[type="password"] {
    width: 250px;
    color: var(--white);
    border: 1px solid #999;
    padding: 5px 10px 4.5px;
    
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

input[type="number"] {
    width: 100px;
}

button {
    font-size: 17px;
    font-weight: bold;
    padding: 5px 12px;
    font-weight: normal;
    border: 1px solid #959595;
    background-color: #f5f5f5;
    
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

/* ---------------------------------------------------------------------------------------------------- */

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus {
    outline: 0;
    border: 1px solid var(--white);
    
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;

    box-shadow: 0 0 3px 0.1px var(--white);
    -moz-box-shadow: 0 0 3px 0.1px var(--white);
    -webkit-box-shadow: 0 0 3px 0.1px var(--white);
}

button:focus {
    box-shadow: 0 0 2px 0.1px var(--white);
    -moz-box-shadow: 0 0 2px 0.1px var(--white);
    -webkit-box-shadow: 0 0 2px 0.1px var(--white);
}

/* ---------------------------------------------------------------------------------------------------- */

.cus-btn input[type="submit"] {
    width: 250px;
    font-size: 20px;
    padding: 5px 0;
    color: var(--white);
    background-color: #606060;

    border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.cus-btn input[type="submit"]:hover,
.cus-btn button:hover {
    cursor: pointer;
}

.cus-btn input[type="submit"]:hover,
.cus-btn button:focus {
    box-shadow: 0 0.5px 6px 1px var(--blackLight);
    -moz-box-shadow: 0 0.5px 6px 1px var(--blackLight);
    -webkit-box-shadow: 0 0.5px 6px 1px var(--blackLight);
}

/* ---------------------------------------------------------------------------------------------------- */

.cus-btn.red input[type="submit"] {
    background-color: #d93044;
    border: 2px solid #c75765;
}

.cus-btn.red input[type="submit"]:hover {
    background-color: #b92133;
    border: 2px solid #914a53;
}

.cus-btn.blue input[type="submit"] {
    background-color: #304dd9;
    border: 2px solid #5774c7;
}

.cus-btn.blue input[type="submit"]:hover {
    background-color: #2149b9;
    border: 2px solid #4a8091;
}

.cus-btn.disabled input[type="submit"] {
    cursor: default;
    background-color: #959595;
    border: 2px solid #4a4a4a;
}

.cus-btn.disabled input[type="submit"]:hover {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

/* ---------------------------------------------------------------------------------------------------- */

table {
    width: 100%;
    border: 1px solid #000;
    border-collapse: collapse;
}

table th,
table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #000;
}

/*  ====================================================================================================
    container size
    ==================================================================================================== */

.container {
    margin: auto;
    padding: 0 20px;
}

@media (min-width: 992px) { 
    
    .container {
        width: 1000px;
    }

    .hide-large-screen {
        display: none !important;
    }
    
}

/*  ====================================================================================================
    resize image
    ==================================================================================================== */

.responsive-image-h {
    height: 100%;
}
  
.responsive-image-w {
    width: 100%;
}

/*  ====================================================================================================
    body
    ==================================================================================================== */

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*  ====================================================================================================
    "page-content" section
    ==================================================================================================== */

section.page-content {
    /* min-height: calc(100vh - 126px); */
    padding: 30px 0;
}

/*  ====================================================================================================
    heading element
    ==================================================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
}