body,
html {
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

}

ul {
    padding: 0;
    list-style: none;
}

li {
    padding: 0;
}

.emt__footer {
    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 56px;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 1px solid #dadada;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color:black;
}

.emt__footer__nav {
    margin-left: auto;
    text-align: right;
}

.emt__footer__nav__item {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #333;
    margin: 0 1rem;
    cursor: pointer;
}


/****** Modal ******/
/* MODAL */
.modal-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 11;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.modal {

    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    overflow-y: auto;
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 24px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 24px;
    -webkit-transform-origin: 50% 50% 0px;
    -ms-transform-origin: 50% 50% 0px;
    transform-origin: 50% 50% 0px;
    opacity: 1;
    -webkit-transform: translateX(0px) translateY(0px) scaleX(1) scaleY(1) translateZ(0px);
    transform: translateX(0px) translateY(0px) scaleX(1) scaleY(1) translateZ(0px);
    padding: 5.5rem 2rem 1rem 2rem;
    border-radius: 4px;
    -webkit-box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid #cecece;
}

.modal.modal--wider {
    max-width: 420px;
}

.modal .title {
    font-size: 24px;
    font-weight: 400;
    padding: 0 32px;
    letter-spacing: 1px;
    margin-top: 0px;
}

.modal .title img {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.modal .title * {
    vertical-align: middle;
}

.modal .content {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 32px 24px 32px;
    text-align: left;
    color: #666666;
}

.modal footer {
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.modal .button {
    margin: 0 10px 10px 0;
    letter-spacing: 2px;
    padding: 8px 12px;
}

.modal__logo {
    display: block;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.modal__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 8px;
    border-bottom: 1px solid #e0e0e0;
}

.modal__row__label {
    font-weight: 600;
    color: #2f2f2f;
    /* letter-spacing: .05em; */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.4em;
    margin-bottom:0px;
}

.modal__row__value {
    color: #6a6e71;
    font-size: 13px;
    /* font-weight: 600; */
}

.modal__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px 12px 12px 12px;
    border-bottom: 2px solid #fdd212;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #f9f9f9;
}

.modal__header__title {
    margin: 0;
    /* line-height: 1; */
    display: inline-block;
    font-size: 14px;
    /* text-transform: uppercase; */
    font-weight: 700;
    /* letter-spacing: 0.05em; */
    color: #333;
}

.modal__header__button {
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    color: #232321;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: .5;
}

.modal__header__button:hover {
    opacity: 1;
}

.modal a {
    color: inherit;
}

.modal h4 {
    margin: 0;
}

/****** Modal Products Grid ******/

.emt__products {}

.emt__products a {
    text-decoration: none;
    min-height: 54px;
}

.emt__products .modal__row {
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    position: relative;
}

.emt__products .modal__row:hover {
    background: #f9f9f9;
}

.emt__products__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-items: space-between;
    margin-bottom: 2rem;

}

.emt__products__item {
    display: block;
    cursor: pointer;
    width: 49%;
    padding: 1.4rem 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
    margin: .5%;
    text-decoration: none;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.emt__products__item:hover {
    background-color: #f9f9f9;
}

.emt__products__item__title {
    text-align: center;
    margin: 0;
    color: #292929;
    font-weight: 600;
    font-size: 13px;
}

.emt__products__item img {
    display: block;
    height: 30px;
    margin: 0 auto;
    margin-bottom: .7rem;
}

#prjweb img {
    height: 16px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.emt__products__title {
    font-size: 17px;
    font-weight: 600;
    color: #424242;
    margin-top: 2rem;
}

.modal__text {
    max-height: 500px;
    overflow-y: auto;
    font-size: 14px;
    margin-bottom: 1rem;
}

/****** Modal Credits ******/
.modal__credits {
    margin-top: 1rem;
    text-align: center;
    /* font-weight: 600; */
    color: #918f90;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    border-top: 1px solid #ffffff;
    padding: 0 8px;
}

.modal__credits img {
    display: block;
    margin: 1rem auto;
    /* width: 40px; */
    width: 96px;
}

/******* Privacy *******/

.modal__text p,
.modal__text li {
    line-height: 1.4;
}

.modal__text h2 {
    margin-top: 0;
    font-size: 18px;
}

.modal__text ul {
    list-style-type: initial;
    padding: 0 20px;
}

.site-name {
    font-weight: 600;
}

.modal__row_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__row_logo {
    max-height: 50px;
    position: absolute;
    left: 44%;
    transform-origin: 50% 50%;
    transition: transform .75s, visibility .75s ease-in;
    top:3px;
}

.modal__row_logo:hover {
    transform: scale(1.5);/*  translateY(-12px) translateX(10px) */;
}

#smartinout_logo {
    margin-right: 30px;
    max-height: 27px;
}

@media (max-width: 576px) {
    .othersociety {
        display: none;
    }
}
