﻿
@font-face {
    font-family: 'DroidKufi';
    src: url('../fonts/DroidKufi-Regular.ttf') format('truetype');
}

body {
    font-family: 'DroidKufi', Calibri;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
   /* zoom: 90%;*/
}



.glyphicon {
    margin-left: 10px;
}

.fa {
    margin-left: 10px;
}

hr.dotted {
    border: 1px dotted green;
    border-radius: 5px;
}

hr.style13 {
    height: 10px;
    border: 0;
    box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


hr.style14 {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

hr.colorgraph {
    height: 2px;
    border-top: 0;
    background: #c4e17f;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(right, #c4e17f, #c4e17f 12.5%, #8c8b8b 12.5%, #8c8b8b 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -moz-linear-gradient(right, #c4e17f, #c4e17f 12.5%, #8c8b8b 12.5%, #8c8b8b 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -o-linear-gradient(right, #c4e17f, #c4e17f 12.5%, #8c8b8b 12.5%, #8c8b8b 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: linear-gradient(to left, #c4e17f, #c4e17f 12.5%, #8c8b8b 12.5%, #8c8b8b 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}


hr.Curved {
    height: 30px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}

hr.Curved:before {
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}


/*@media screen and (max-width: 768px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 15px;
    }
}*/



.mydropdown {
    padding-top: 0.15em;
}

.mylabel {
    font-size: 16px;
    padding-top: 0.50em;
}


/*.modal-dialog {
    position: absolute;
    display: table;
    overflow-y: auto;
    overflow-x: auto;
    width: 50%;
    height: 60%;
    margin: 0 auto;
    min-width: 400px;*/
    /*min-height: 400px;*/
    /*left: 0;
    right: 0;
    top: 10%;
}*/

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.MyModalBackground {
    background-color: Gray;
    filter: alpha(opacity=50);
    opacity: 0.50;
}

.SuperScript {
    font-size: xx-small;
    vertical-align: top;
    color: gray;
}

#circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
}

.loader {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    border: 8px solid #162534;
    border-top: 8px solid #09f;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}


.input-group-addon {
    min-width: 150px;
    max-width: 200px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}



/*********************** Toggle Switch - begin ****************************/
.switch {
    position: relative;
    display: inline-block;
    width: 29px;
    height: 17px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white; /*background when switched off*/
        border: 1px solid;
        border-color: lightgrey; /*border*/
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 1px;
        bottom: 2px;
        background-color: darkgray; /*round when switched off*/
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

    input:checked + .slider {
        background-color: #2196F3; /*background when switch on*/
        /*box-shadow: 0 0 3px #2196F3;*/ /*highlight when switched on*/
    }


    input:focus + .slider {
        box-shadow: 0 0 5px #2196F3; /*highlight when focus on*/
    }

/*********************** Toggle Switch - end ****************************/



/*********************** Checkbox - begin ****************************/

input[type=checkbox] + label {
    display: block;
    margin: 0.1em;
    cursor: pointer;
    padding: 0.1em;
    font-weight: 300; 
}

    input[type=checkbox] {
        display: none;
    }

    input[type=checkbox] + label:before {
        content: "\2713"; 
        border: 0.1em solid royalblue;
        border-radius: 0.5em;
        display: inline-block;
        width: 1.75em; 
        height: 1.75em; 
        vertical-align: middle;
        text-align: center !important;
        color: transparent;
        transition: .4s;
        background-color: white;
        /*font-size: small;*/
    }

    input[type=checkbox] + label:active:before {
        transform: scale(0);
    }

    input[type=checkbox]:checked + label:before {
        color: royalblue;
        font-weight: 800;
        text-align: center; 
        border: 0.2em solid;
        border-color: royalblue;
    }

    input[type=checkbox]:disabled + label:before {
        transform: scale(1);
        border-color: #aaa;
        text-align: center;
        cursor: not-allowed;
    }

    input[type=checkbox]:checked:disabled + label:before {
        transform: scale(1);
        background-color: lightgrey;
        border-color: grey;
        color: dimgray;
        border: 0.1em solid;
    }

/*********************** Checkbox - end ****************************/