@charset "UTF-8";

/* region "Layout" */

html, body {
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

[role="main"] {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

[role="main"] [role="document"] {
    max-width: 750px;
    margin: auto !important;
    padding: 10px 25px;
}

@media all and (max-width: 430px) {

    [role="main"] [role="document"] {
        padding: 10px 10px;
    }

}

/* endregion */

/* region "Main title" */

#m-id-title {
    font-weight: 300;
    border: none !important;
    color: #212121;
}

@media all and (max-width: 430px) {

    #m-id-title {
        font-size: 32px;
    }

}

@media all and (max-width: 380px) {

    #m-id-title {
        font-size: 28px;
        font-weight: 400;
        color: #3f3f3f;
    }

}

@media all and (max-width: 350px) {

    #m-id-title {
        font-size: 25px;
        font-weight: 400;
        color: #3f3f3f;
    }

}

/* endregion */

/* region "Grid" */

.m-grid {
    width: 100%;
}

.m-grid:before,
.m-grid:after {
    content: " ";
    display: table;
}

.m-grid:after {
    clear: both;
}

.m-grid {
    *zoom: 1;
}

[class*='m-col--'] {
    float: left;
}

.m-col--row {
    width: 100%;
}

.m-col--1-3 {
    width: 33.33%;
}

.m-col--1-2 {
    width: 50%;
}

/* endregion */

/* region "Form" */

.m-in-txt {
    border: none !important;
    border-radius: 0 !important;
    border-bottom: solid #c9c9c9 2px !important;
    outline: none !important;
}

.m-in-txt:hover {
    border-bottom-color: #939393 !important;
}

.m-in-txt:focus {
    border-bottom-color: #000000 !important;
}

/* endregion */

/* region "Classes" */

.m-txt-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-card {
    background: #fff;
    border-radius: 2px;
}

.m-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.m-ripple {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.m-ripple:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle, #000 10%, transparent 10.01%) no-repeat 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s
}

.m-ripple:active:after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: none;
}

.m-smooth {
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

.m-spacer-hr {
    height: 5px;
}

/* endregion */

/* region "Notifier" */

.alertify-notifier .ajs-message {
    background: #ffffff !important;
    color: #000 !important;
    text-align: left !important;
    border: none !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
    text-shadow: none !important;
}

.alertify-notifier .ajs-message.ajs-success {
    color: #ffffff !important;
    background: #3949AB !important;
}

.alertify-notifier .ajs-message.ajs-error {
    color: #ffffff !important;
    background: #D32F2F !important;
}

.alertify-notifier .ajs-message.ajs-warning {
    color: #ffffff !important;
    background: #E65100 !important;
}

/* endregion */
