/* General */
html, body {
    width: 100%;
    height: 100%;
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
}
.smd-input::placeholder, .smd-input:-ms-input-placeholder, .smd-input::-ms-input-placeholder{
    color: #e1e1e1;
}
.smd-input:focus {
    box-shadow: none;
}
.left-align {
    text-align: left !important;
}
.not-shown {
    display: none !important;
}
.no-bottom-space {
    margin-bottom: 0px !important;
}
.space-top {
    margin-top: 10px;
}
.space-right {
    margin-right: 15px;
}
.dropdown-max-height {
    max-height: 300px !important;
    overflow: auto !important;
}
.rotate-elment {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Iconic - Select */
.ic-input-select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat;
    background-position: right 15px top;
    -moz-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 4px 20px;
}

/* Iconic - Table */
.ic-table.table-striped {
    text-align: center;
    color: #748a9d;
    border: 1px solid rgba(116,138,157,.4) !important;
    border-left: 0px !important;
    border-right: 0px !important;
}
.ic-table.table-striped thead th {
    border-bottom: 1px solid rgba(116,138,157,.4) !important;
}

/* Toastr */
.mini-toastr__notification {
    opacity: 0.9 !important;
    width: 320px !important;
}
.mini-toastr-notification__title {
    font-weight: bold !important;
    position: absolute !important;
    margin-top: 5px !important;
    left: 70px !important;
}
.mini-toastr-notification__message {
    position: relative !important;
    top: -5px !important;
}
i.mini-toastr-notification__icon {
    font-size: 40px;
}
.mini-toastr__notification.-error {
    background-color: #ef465c !important;
    border: 2px solid #ed2d45 !important;
}
.mini-toastr__notification.-warn {
    background-color: #f7bc4f !important;
    border: 1px solid #f5861e !important;
}
.mini-toastr__notification.-success {
    background-color: #87c751 !important;
    border: 1px solid #55872b !important;
}
.mini-toastr__notification.-info {
    background-color: #57a2e4 !important;
    border: 1px solid #217dce !important;
}

/* Animation */
.rotate, .rotate-single {
    position: relative;
    display: inline-block;
    margin-top: 10.5px;
    margin-left: -5px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
.rotate-single {
    margin-top: -10px;
    margin-left: -10px;
}
.ic-switch-slider {
    border: 1px solid #878787 !important;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }