* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    font-family: Arial
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    
}

body {
    font-family: Verdana;
    background-color: #e7e5e5;
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #dddddd 1px, #f9f7f7 1px);
   
}

a {
    text-decoration: none;
    color: #277A92;
    cursor:pointer;
}

.flexleft {
    display: flex;
    justify-content: start;
}
.spaceevenly {
    display: flex;
    justify-content: space-evenly;
}
.flexcenter {
    display: flex;
    justify-content: center;
}

.aligncenter {
    align-items: center;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.card {
    background-color: #dfdfdf;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0px 6px 7px 0px rgba(180, 200, 216, 1);
    transition: .2s;
}

input, select {
    font-size: 18px;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    background: white;
    color: black;
    border: 1px solid #C4D1EB;
    border-radius: 5px;
    transition: .3s ease;
}

    input:focus {
        background: #FFFFFF;
        border: 1px solid #424b54ff;
        border-radius: 10px;
    }

    input::placeholder {
        color: #DDDDDD;
    }

    input[type=submit] {
        background-color: #277A92;
        border: none;
        color: white;
        width:auto;
        padding: 5px 15px;
        text-decoration: none;
        cursor: pointer;
    }

        input[type=submit]:hover {
            background-color: rgb(62, 153, 219);
        }

    input:disabled {
        background-color: lightgray;
    }
table {
    background-color: none;
    border-collapse: collapse;
  
}

    table td, table th {
        padding: 10px;
    }

    table thead {
        background-color: rgb(62, 153, 219);
    }

.left{
   margin-left: 10px;
}

.top{
    margin-top:40px;
}

.padding-ten{
    padding:10px;
}
ul {

}

li {

}


input::file-selector-button {
    background-color: #277A92;
    border: 1px solid black;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    color: white;
    cursor: pointer;
    font: 11px;
    padding: 10px;
    transition: .2s;
}

    input::file-selector-button:hover,
    input::file-selector-button:focus {
        background-color: rgb(62, 153, 219);
    }

    input::file-selector-button:active {
        -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        outline: 0;
    }

    input::file-selector-button::-moz-focus-inner {
        border: 0;
    }


  /*CHECKBOXES*/

.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: inherit;
}

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #277A92;
    border: 0px solid #000000;
    border-radius: 0px;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #cccccc;
}

.control input:checked ~ .control_indicator {
    background: #3d95d6;
}

.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #0e6647d;
}

.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}

om-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 18px;
    padding: 5px 10px 5px 10px;
    background-color: #FFFFFF;
    border: 1px solid #C4D1EB;
    border-radius: 5px;
    color: #000000;
    cursor: pointer;
    outline: none;
    box-shadow: 3px 3px 2px 0px #E2E2E2;
}

    .custom-select select:focus {
        background: #F2F2F2;
        border: 1px solid #5A7EC7;
        border-radius: 5px;
    }

.custom-select::after {
    
}
