#ouibounce-modal {
    font-family: Arial,Verdana,Helvetica,sans-serif;
    color: #707070;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

#ouibounce-modal .underlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
    z-index: 1002;
}

#ouibounce-modal .modal {
    width: 690px !important;
    height: 700px;
    background-color: #fff;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 3px;
    -webkit-animation: popin 0.3s;
    animation: popin 0.3s;
    -webkit-box-shadow: 0 1px 2px rgba(51,51,51,0.25);
    -moz-box-shadow: 0 1px 2px rgba(51,51,51,0.25);
    box-shadow: 0 1px 2px rgba(51,51,51,0.25);
    z-index: 1003;
    padding: 0 !important;
}

.modal-row h2 {
    font-size: 22px;
    line-height: 26px;
    display: block;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    font-weight: bold;
    color: #474747;
    border: 0 !important;
    font-family: aleobold, 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
}

.modal-row h2:after {
    border: 0 !important;
}

.modal-row h3, #blogpost-wrapper > h3, .uvm {
    padding-top: 20px;
    color: #474747;
    font-size: 1.5em;
    font-weight: 500;
    font-family: aleobold, 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
}

.modal-header {
    text-align: center;
}

.modal-header img {
    margin-top: -15px;
    border-bottom: 1px solid transparent;
}

.modal-header img:hover {
    border-bottom: 1px solid #ed3136;
}

.modal-content {
    font-size: 12px;
    line-height: 1.5em;
    margin-top: 1.5em;
}

#ouibounce-modal .modal-title {
    font-size: 18px;
    background-color: #252525;
    color: #fff;
    padding: 10px;
    margin: 0;
    border-radius: 4px 4px 0 0;
    text-align: center;
}

#ouibounce-modal .modal-body {
    padding: 5% 35px;
    font-size: 0.9em;
}

#ouibounce-modal .modal-footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

#ouibounce-modal .modal-footer p {
    text-transform: capitalize;
    cursor: pointer;
    display: inline;
    border-bottom: 1px solid #344a5f;
}


.modal-hide {
    display: none !important;
}

#blogpost-wrapper ul h3 {
    width: 88%;
}

#blogpost-wrapper {
    text-align: center;
    display: table;
    margin: 50px auto;
    width: 70%;
}

.blogpost-title {
    direction: ltr;
    text-align: left;
}

.blogpost-title p {
    text-align:left;
    color:#4c4c4c;
    direction:ltr;
    margin: 0 0 2px 0;
}

#blogpost-wrapper ul {
    margin:0;
    padding: 0;
}

#blogpost-wrapper li, #blogpost-wrapper > h3 {
    display: block;
    border-bottom: 1px dotted #CCCCCC;
    margin: 0 0 6px;
    padding: 0 0 6px;
}

#blogpost-wrapper li:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

#blogpost-wrapper li img {
    border: 1px solid #EEEEEE;
    float: left;
    margin-right: 2px;
    padding: 3px;
    width: 180px;
    /*height: 105px;*/
}

#blogpost-wrapper p {
    text-align: left;
    color: #4c4c4c;
    direction: ltr;
    padding-top: 5px;
    margin: 0 0 2px 0;
}

#blogpost-wrapper p a {
    border: none;
    font-family: aleobold, 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
    font-size: 1.5em !important;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    cursor: pointer!important;
    outline: 0;
}

#blogpost-wrapper .appButton {
    background-color: #ed3136;
    color: #fff;
    white-space: normal;
    height: auto;
    padding: 0.76923rem 1.53846rem;
    border-radius: 3px;
    display: inline-block;
    border-style: solid;
    border-width: 0px;
    cursor: pointer;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.5em;
    line-height: normal;
    margin: 20px 0 0 0;
    position: relative;
    text-decoration: none;
    text-align: center;
}

#blogpost-wrapper .appButton span {
    vertical-align: middle;
}

#blogpost-wrapper .appButton a {

    color: #fff !important;
    text-decoration: none !important;
    line-height: inherit !important;
}

#blogpost-wrapper p a:hover, .uvm a:hover {
    color: #ed3136;
}

.uvm a {
    color: #4c4c4c;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-ms-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-webkit-keyframes popin {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    85% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-ms-keyframes popin {
    0% {
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    85% {
        -ms-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes popin {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    85% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}