@charset "UTF-8";

/* different-menu-icons */
@font-face {
    font-family: "different-menu-icons";
    src:url("fonts/1693155538.eot");
    src:url("fonts/1693155538.eot?#iefix") format("embedded-opentype"),
    url("fonts/1693155538.woff") format("woff"),
    url("fonts/1693155538.ttf") format("truetype"),
    url("fonts/1693155538.svg#1693155538") format("svg");
    font-weight: normal;
    font-style: normal;
}
.dmi{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
[data-icon]:before {
    font-family: "different-menu-icons" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="dm-"]::before, [class*=" dm-"]::before {
    font-family: "different-menu-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    /* speak: none; */
    /* line-height: 1; */
    /* -webkit-font-smoothing: antialiased; */
    /* -moz-osx-font-smoothing: grayscale; */
}

.dm-cogs:before {
    content: "\62";
}
.dm-plus-square:before {
    content: "\63";
}
.dm-question-circle:before {
    content: "\64";
}
.dm-spin {
    -webkit-animation:spinner 2s linear infinite;
    animation:spinner 2s linear infinite;
}
@-webkit-keyframes spinner {
    0% {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to {
        -webkit-transform:rotate(1turn);
        transform:rotate(1turn)
    }
}
@keyframes spinner {
    0% {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to {
        -webkit-transform:rotate(1turn);
        transform:rotate(1turn)
    }
}

.dm-spinner:before {
    content: "\61";
}