.event-type-selector {
    position: relative;

    display: none;
    float: right;

    max-width: 40%;
}

.event-type-selector:before {
    position: absolute;
    top: 0;
    left: -30px;

    display: inline-block;

    width: 25px;
    height: 25px;

    content: '';

    background: url('/assets/website/svg/ico_event.svg') center no-repeat;
    background-size: cover;
}

.event-type-selector select {
    width: 100%;
    min-width: 90px;
}


/* Small Devices, Tablets */
@media only screen and (min-width : 720px) {
    .event-type-selector {
        max-width: 47%;
    }

    .event-type-selector:before {
        left: -70px;

        width: 44px;
        height: 44px;
    }

    .event-type-selector select {
        min-width: 240px;
    }
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1020px) {
    .event-type-selector:before {
        left: -45px;

        width: 32px;
        height: 32px;
    }

    .event-type-selector select {
        min-width: 220px;
    }
}
