@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css?family=Ubuntu');  /* own */

@font-face {
    font-family: 'Nassim';
    src: url(../font/Nassim.eot);
    src: url(../font/Nassim.eot?#iefix) format('embedded-opentype'),
         url(../font/Nassim.ttf) format('truetype'),
         url(../font/Nassim.woff) format('woff2'),
         url(../font/Nassim.woff) format('woff');
}

@font-face {
    font-family: iransans;
    src: url(../font/IranianSans.ttf) format('truetype');
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding: 0;
    margin: 0;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



    /* Own */
    h1, h2, h3, h4, h5 {
        font-family: Ubuntu;
        line-height:30px;
    }
    
    a
    {
        text-decoration:none;
    }
    
    a:hover, a:active
    {
        color:#00ccff;
        text-decoration:none;
    }
    
    b{
        font-weight:bold;
        color:unset;
        text-decoration:none;
        text-shadow:none;
    }
    
    .watermark
    {
        color:Gray;
    }
    
    .imgSepia
    {
        -webkit-filter: sepia(0);
        filter: sepia(0);
    }
    
    .imgSepia:hover
    {
        -webkit-filter: sepia(60%);
        filter: sepia(0.6);
        cursor:pointer;
    }
    
    .lockRotate {
        animation: rotation 2s infinite linear;
    }
    
    .tag{
        font-size:16pt;
        float:right;
        text-align:right;
        margin:10px 15px 10px 30px;
        color:red;
        max-width:250px;
    }
    
    .keyword {
        font-size: 12pt;
        float: right;
        text-align: right;
        color: #00ABDF;
        border-right: 1px solid #00ABDF;
        padding:10px 15px 10px 50px;
        margin:20px 80px 0px 70px;
        background-color:#fff;
    }
    
    @keyframes rotation {
        from {
            -webkit-transform: rotateY(0deg);
            }
        to {
            -webkit-transform: rotateY(180deg);
            }
    }
    
    .systems {
        text-align: justify;
        background-color: whitesmoke;
        padding: 30px 20px 10px 20px;
        margin: 0px 0px 20px 0px;
        border-radius: 5px;
    }
    
    .sensors {
        background-color: whitesmoke;
        padding: 30px;
        margin:20px;
        border-radius: 5px;
        display: inline-block;
        max-width: 520px;
        text-align:justify;
        vertical-align:top;
        min-height:400px;
    }

  /*************************************************************/

    /* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  /*************************************************************/
    
.logo
{
    width: 45px;
    position: relative;
    top: -7px;
}

.hesbot
{
    color:#00ABDF;
    font-family:'Ubuntu';
    font-size:24pt;
}