﻿/* 
  ##Device = All
  ##Screen = Styles will be apply for all resolutions
*/

/* CSS */
.row {
    margin: 0;
}

.special-model-title {
    font-family: TypeNextCondensedProLight;
    font-size: 38px;
    text-align: center;
}

.special-model-description {
    text-align: center;
    font-family: TypeNextProRegular;
    font-size: 20px;
}

.special-model-price {
    text-align: center;
    font-family: TypeNextProBold;
    font-size: 28px;
}

.cta-section-buttons-container {
    cursor: pointer;
}

.details-title {
    font-family: TypeNextCondensedProLight;
    text-align: center;
    font-weight: 800;
}

.special-model-details {
    font-family: TypeNextProRegular;
}

.image-note-special-offer {
    font-family: TypeNextProRegular;
}
/* 
  ##Device = Desktops large
  ##Screen = 1920px to higher resolution desktops
*/
@media (min-width: 1920px) {
    /* CSS */
    /*  The code is commented out upon request in the ticket-22254571
    .special-model-description {
        padding: 0rem 30rem; 
    }
    */
    .buttons-content {
        padding: 2rem 14rem;
    }

    .special-paragrahps-details {
        padding: 1rem 10rem;
    }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to 1919px
*/

@media (min-width: 1281px) and (max-width: 1919px) {

    /* CSS */
    .buttons-content {
        padding: 0rem 10rem;
    }
}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */
    .buttons-content {
        padding: 0rem 12rem;
    }
}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */
    .buttons-content {
        padding: 0rem 6rem;
    }
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */
    .buttons-content {
        padding: 0rem 6rem;
    }
}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */
    .buttons-content {
        padding: 0rem 4rem;
    }
}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */
    .buttons-content {
        padding: 0rem 2rem;
    }
}
