@font-face {
    font-family: Tilt Neon;
    src: url('fonts/tiltneon.ttf');
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'),
         local('MaterialIcons-Regular'),
         /* Old file: url(iconfont/MaterialIcons-Regular.woff2) format('woff2'), */
         /* load new file */ 
         url(fonts/material-icons.woff2) format('woff2'),
         url(iconfont/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons{
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-osx-font-smoothing: grayscale;
}

html{
    font-family: Tilt Neon, sans-serif;
}

body{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main{
    flex: 1 0 auto;
}

input.select-dropdown, .select-wrapper .caret{
    color: #f5f5f5;
    fill: #f5f5f5;
}

nav{
    background: #2D2D2D;
}

.custom-button, .custom-button:focus{
    border-radius: 15px;
    background: #00678a;
    color:#f5f5f5;
    width: 100%;
    height: 50px;
    font-weight: bold;
    text-transform: none;
}

.popup-button{
    border-radius: 15px;
    background: #00678a;
    color:#f5f5f5;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: none;
}

.navbar-container-logo{
    display: flex!important;
    align-items: center!important;
}

.input-field input[type=text]:focus + label{
    color: #00678a!important;
}

.input-field input[type=text]{
    color: #f5f5f5!important;
    font-family: Tilt Neon;
}

.input-field input[type=text]:disabled + label{
    color: #9e9e9e!important;
}

.input-field input[type=text]:disabled{
    border-bottom: 1px solid #9e9e9e;
}

.input-field input[type=text]:focus{
    border-bottom: 1px solid #00678a!important;
    box-shadow: 0 1px 0 0 #00678a!important;
    color: #f5f5f5!important;
}

.dropdown-content{
    background: #313131;
}

.select-dropdown li.disabled > span{
    color: #f5f5f5;
}

.dropdown-content li > span{
    color:#f5f5f5;
}

.modal{
    background: #1E1E1E;
    width: 30%;
    border-radius: 25px;
}

.template-container-div{
    background: #2C2C2C;
    border-radius: 10px;
    padding: 7px 20px;
    margin-bottom: 15px;
}

.template-subject{
    background: #2C2C2C;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.card-container{
    background-color: #1E1E1E;
    border-radius: 15px;
    padding: 12px 15px 30px 15px;
}

#toast-container{
    min-width: 10%;
    top: auto;
    bottom: 10%;
    right: 50%;
    transform: translateX(50%) translateY(50%);
}

.custom-toast{
    background: #388e3c!important;
    border-radius: 10px!important;
}

.error-toast{
    background: #c62828!important;
    border-radius: 10px!important;
}

nav .brand-logo{
    font-size: 25px;
}

h5{
    font-size: 22px;
}

#change_name{
    color: #fff;
    line-height: 39px!important;
    font-size: 17px;
    background: transparent;
    border: 1px solid #fff;
    height: 40px;
    border-radius: 10px;
    text-transform: none;
    margin-right: 0px;
}

@media only screen and (max-width: 992px){
    .email-template-container{
        padding-left: 10.5px!important; 
    }

    nav .brand-logo{
        font-size: 22px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 600px){
    main{
        padding-top: 24px;
    }
}