/* SVG Icons CSS */

/* This CSS provides SVG background images for icons */

.block-fourteen .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    height: 60px;
}

.block-fourteen .icon i {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* WiFi Icon */
.block-fourteen .icon .flaticon-wifi-signal {
    background-image: url('../images/icons/wifi.svg');
}

/* Laundry Icon */
.block-fourteen .icon .flaticon-laundry {
    background-image: url('../images/icons/laundry.svg');
}

/* Meditation Icon */
.block-fourteen .icon .flaticon-massage {
    background-image: url('../images/icons/meditation.svg');
}

/* Pool Party Icon */
.block-fourteen .icon .flaticon-game-controller {
    background-image: url('../images/icons/pool.svg');
}

/* Gym Icon */
.block-fourteen .icon .flaticon-weights {
    background-image: url('../images/icons/gym.svg');
}

/* Restaurant Icon */
.block-fourteen .icon .flaticon-croissant {
    background-image: url('../images/icons/restaurant.svg');
}

/* Conference Room Icon */
.block-fourteen .icon .flaticon-conference-1 {
    background-image: url('../images/icons/conference.svg');
}

/* Transport Icon */
.block-fourteen .icon .flaticon-plane {
    background-image: url('../images/icons/transport.svg');
}

/* Hide the :before pseudo-element that would normally show the icon */
.block-fourteen .icon i:before {
    content: '' !important;
}