@font-face {
  font-family: 'robotoblack';
  src: url('../font/roboto-black-webfont.woff') format('woff'),
       url('../font/roboto-black-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotoblack_italic';
  src: url('../font/roboto-blackitalic-webfont.woff') format('woff'),
       url('../font/roboto-blackitalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotobold';
  src: url('../font/roboto-bold-webfont.woff') format('woff'),
       url('../font/roboto-bold-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotobold_italic';
  src: url('../font/roboto-bolditalic-webfont.woff') format('woff'),
       url('../font/roboto-bolditalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotoitalic';
  src: url('../font/roboto-italic-webfont.woff') format('woff'),
       url('../font/roboto-italic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotolight';
  src: url('../font/roboto-light-webfont.woff') format('woff'),
       url('../font/roboto-light-webfont.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;

}
@font-face {
  font-family: 'robotolight_italic';
  src: url('../font/roboto-lightitalic-webfont.woff') format('woff'),
       url('../font/roboto-lightitalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotomedium';
  src: url('../font/roboto-medium-webfont.woff') format('woff'),
       url('../font/roboto-medium-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotomedium_italic';
  src: url('../font/roboto-mediumitalic-webfont.woff') format('woff'),
       url('../font/roboto-mediumitalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotoregular';
  src: url('../font/roboto-regular-webfont.woff') format('woff'),
       url('../font/roboto-regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotothin';
  src: url('../font/roboto-thin-webfont.woff') format('woff'),
       url('../font/roboto-thin-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'robotothin_italic';
  src: url('../font/roboto-thinitalic-webfont.woff') format('woff'),
       url('../font/roboto-thinitalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
body {
  font-family:robotoregular!important;
  
}
/* ModalComponent.razor.css */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

