/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.flex {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.single-pogodnost {
    box-shadow: 0px 0px 10px 2px whitesmoke;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    margin-bottom: 10px;
    align-items: center;
    transition: 250ms;
}
.single-pogodnost:hover{
    box-shadow: 0px 0px 10px 2px #e9e9e9;
}
.single-pogodnost .pogodnost-logo{
    flex: 1;
}
.single-pogodnost .pogodnost-content{
    flex: 3;
    padding: 10px 30px;
}
.single-pogodnost .pogodnost-content h3{
    margin-top: 0px;
}
.single-pogodnost .actions{
    margin-top: 15px;
}
.single-pogodnost .actions .button,
.pogodnosti-modal .button{
    padding: 8px 18px;
    background: #124094;
    color: #f7f7f7 !important;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
}
.single-pogodnost .actions .button:hover,
.pogodnosti-modal .button:hover{
    background:#103271;
    transition: 250ms;
}
.pogodnosti-modal{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 999999;
}
.pogodnosti-modal-bg{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #1240945c;
    width: 100%;
    height: 100%;
}
.pogodnosti-modal-content-wrap{
    max-width: 640px;
    width: 100%;
    background: #fdfdfd;
    z-index: 2;
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}