/*------------------------------------------------------------------

[TABLE OF CONTENTS]

- GLOBAL
- GUI
  -- Fonts
  -- Titles
  -- Images
  -- Button
  -- List
  -- Forms
  -- Blockquote
  -- Pagination
  -- Alert
  -- Tooltip
  -- Sections
  -- Accordion
  -- Other
- COMPONENTS
- FOOTER
-------------------------------------------------------------------*/
.rental-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    background-color: #f6f6f6;
    transition: 0.5s;
	margin-bottom: 25px;
}

.rental-item:hover,
.rental-item:focus,
.rental-item:active {
    -webkit-box-shadow: 0 5px 24px 6px rgba(0, 0, 0, 0.06);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    background-color: #ffffff;
    box-shadow: 0 5px 24px 6px rgba(0, 0, 0, 0.06);
    transition: 0.5s;
}

.rental-item:hover .rental-item__price-box,
.rental-item:focus .rental-item__price-box,
.rental-item:active .rental-item__price-box {
    border: 2px solid #f6f6f6;
}

.rental-item + .rental-item {
    margin-top: 45px;
}

.rental-item__media {
    display: block;
    position: relative;
}

.rental-item__media::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to top, #dfdfdf 0%, rgba(0, 0, 0, 0) 100%);
    content: '';
    opacity: 0.8;
}

.rental-item__media img {
    -o-object-fit: cover;
    -o-object-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rental-item__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.rental-item__links a {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.rental-item__links a + a {
    margin-left: 13px;
    padding-left: 13px;
    border-left: 1px solid #ffffff;
}

.rental-item__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding:0px 10px 0px 25px;
}

.rental-item__title {
    margin-bottom: 15px;
    color: #222222;
    font-size: 22px;
	line-height: 28px;
    font-weight: 700;
	text-transform: uppercase;
}

.rental-item__prices-list ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.rental-item__prices-list ul li {
    display: block;
    position: relative;
    margin-right: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
    color: #222222;
    font-family: Barlow;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.rental-item__prices-list ul li:last-child {
    margin: 0;
}

.rental-item__prices-list ul li::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    background-image: url(../img/icons/ico-circle.svg);
    content: '';
}

.rental-item__price-delivery {
    margin: 12px 0 20px;
    padding: 9px 0 10px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    color: #fa4318;
    font-size: 16px;
    font-weight: bold;
	text-transform:uppercase;
}

.rental-item__specifications ul {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    margin: 0;
    column-gap: 10px;
}

.rental-item__specifications ul li {
    color: #222222;
    font-size: 14px;
	line-height:24px;
    font-weight: 400;
	text-transform: capitalize;
}

.rental-item__specifications ul li::before {
    left: -15px;
    width: 5px;
    color: #edb509;
}

.rental-item__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.rental-item__price-box {
    padding: 30px 20px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    text-align: center;
}

.rental-item__price-title {
    margin-bottom: 22px;
    color: #222222;
    font-size: 14px;
}

.rental-item__price-title strong {
    display: block;
    font-weight: 600;
    line-height: 1.1;
}

.rental-item__price-title span {
    display: block;
    font-weight: 400;
    line-height: 1.1;
}

.rental-item__price-current {
    color: #edb509;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.rental-item__price-old {
    color: #393939;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.78;
}

.rental-item__price-btn {
    margin-top: 12px;
    background: #fa4318;
    padding: 5px 20px 5px 20px;
    font-size: 16px;
	line-height:26px;
	text-transform: uppercase;
    font-weight: bold;
	text-align: center;
	color: #ffffff;
}
.rental-item__price-btn a {
    color: #ffffff;

}

.rental-item li {
    list-style: inside;
	font-size: 20px;
    padding: 0px;
    margin: 0px;
}

}


@media (min-width: 767px) {

    .rental-item__links a {
        font-size: calc(12px + 2 * (100vw / 1920));
    }
}


@media only screen and (max-width: 959px) {
    .rental-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .rental-item__media {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 48%;
    }

    .rental-item__desc {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        padding: 30px 0 0 0;
    }

    .rental-item__price {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 48%;
        text-align: center;
    }

    .rental-item__price-btn {
        width: 100%;
		
    }

    .rental-item__price-btn .uk-button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .rental-item__links a {
        font-size: calc(12px + 3.4 * ((100vw - 320px) / 1920));
    }
}

@media only screen and (max-width: 639px) {

    .rental-item {
        padding: 15px;
    }

    .rental-item + .rental-item {
        margin-top: 20px;
    }

    .rental-item__media {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
    }

    .rental-item__desc {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        padding: 20px 0;
    }

    .rental-item__price {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
    }
}






@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
