@charset "UTF-8";
/* CSS Document */

@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");

@font-face {
    font-family: SFProDisplay;
    src: url(../fonts/Cabin-Regular.otf);
}

*{
    font-family: SFProDisplay;
    font-weight:normal;
    margin:0;
    padding:0;
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

::placeholder {
    color: #CCC !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("../images/arrow.png");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 15px;
}

select option{
    font-family: arial;
}

body{
    background-color:white;
}
.content
{
    margin-left: 15px;
    margin-right: 15px;
    background-color: #F5F5F5;
    padding: 10px;
}

nav{
    align-items:center;
    justify-content:space-between;
    background-color:#FFFFFF;
    border-bottom:#DFE3EE solid 1px;
    padding: 1rem 1rem;
}

.nav-item{
    list-style-type:none;
    display:inline;
    text-align: center;
}

.nav-link{
    font-size:14px !important;
    color:#000 !important;
    display:inline-block;
    padding:0.3rem 1rem !important;
    font-weight: bold;    
}

/*.nav-item a:hover{
    color:#0D99FA !important;
}*/

.btn-sign{
    border-radius: 20px;
    border:none;
    background-color:#304155;
    font-size: 18px;
    color:#FFF;
    outline:none;
    cursor:pointer;
}

.btn-signup{
    border-radius:20px;
    border:none;
    background-color:#304155;
    color:#FFF !important;
    outline:none;
    cursor:pointer;
}

.btn-signin{
    padding: 10px 25px !important;
    border-radius: 50px;
    border:none;
    background-color:#304155;
    font-size: 1em !important;
    font-weight: 500;
    color:#FFFFFF !important;
    outline:none;
    cursor:pointer;
}


.heading{
    font-size: 1.8rem;
    text-align:center;
    margin-left:0.5rem;
    margin-right:0.5rem;
    padding-top: 2rem;
    font-weight: bold;
}

.subheading{
    margin-top: 1.5rem;
    margin-left: 1rem;
    margin-bottom: 0.1rem;
    font-size:1.5rem;
}

.form-col-heading{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.message {
    font-size:1.2rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.message a{
    text-decoration:none;
    color:#0D99FA;
}

.message a:hover{
    color:#3A6793;
}

.text-field{
    border:solid #929292 1px;
    border-radius: 20px;
}

.textarea-field{
    height:94px !important;
    border:solid black 1px;
    resize:none;
    border-radius: 14px;
}

.username{
    text-align:right;
    font-size: 1.1rem;
}
.username a{
    text-decoration:none;
    color:#0D99FA;
}
.username a:hover{
    color:#3A6793;
}

.logo{
    width: 200px;
}

.alert{
    text-align:center;
    color:#F00;
    margin-bottom:1rem;
    font-weight: bold;
}

.btn-clogo{
    padding: 10px;
    border: solid #929292 1px;
    border-radius: 20px;
    cursor: pointer;
    display: grid;
    background-color: #fff;
}

.preview{
    border:solid #929292 1px;
    border-radius:20px;
    text-align:center;
}

.text{
    font-size:1.1rem;
    text-align:center;
    margin-top: 30px;
}

.btn-blue, .btn-blue:active, .btn-blue:focus{
    width: 150px;
    background-color:#304155;
    color:#FFF;
    font-size: 1.2em;
    border-radius: 20px;
    box-shadow: none;
    border: none;
}

.btn-blue:hover{
    color:#FFF;
}

.btn-gray, .btn-gray:active, .btn-gray:focus{
    width: 150px;
    background-color:#F5F5F5;
    color:#304155;
    font-size: 1.2em;
    border-radius: 20px;
    border: solid #304155 1px;
    box-shadow: none;
}

.top-item {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-link{
    height:35px;
    border:none;
    font-size:18px;
    color:#0D99FA;
    outline:none;
    cursor:pointer;
    background:none;
}

.separator{
    color:#0D99FA;
    margin: 0 0.5rem;
}

.btn-link:hover{
    color:#3A6793
}

.dataTables_wrapper {
    margin-bottom: 20px;
}

table.dataTable {
    margin-left: 1rem;
    margin-right: 1rem;
    border: none !important;
}

th {
    border: none !important;
}

.dataTable td, .dataTable th {
    text-align:left;
    padding: 10px 0 10px 50px;
    font-size:18px;
}
.dataTable tr td{
    background-color:#FFF;
    border-top: 5px solid #F5F5F5 !important;
}

.gender{
    height:40px;
    padding:10px 0px;
    color:#929292;
    line-height: 1;
}

.btn-radio{
    display:inline-block;
    position:relative;
    cursor:pointer;
    user-select:none;
    margin-left:5%;
    padding-left:8%;
}
.btn-radio input{
    display:none;
}
.circle{
    display:inline-block;
    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    background-color:#FFF;
    border:solid 1px #929292;
    left:0;
    top:0;
}
.btn-radio:hover .circle{
    background-color:#0D99FA;
    border:none;
}
.btn-radio input:checked + .circle:after{
    content:"";
    width:14px;
    height:14px;
    border-radius:50%;
    background-color:#24E3FA;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.navbar-toggler {
    margin: 0px !important;
    padding: 0;
}
.navbar-light .navbar-toggler{
    border: none;
}

.nav-container {
    margin: 5px;
}

.btn-logo{
    height:248px;
    border:solid black 1px;
    border-radius:20px;
    cursor:pointer;
    margin-top:2px;
    display:grid;
    place-items:center;
    background-color: #FFF;
}

.options{
    display: flex;
    justify-content:center;
}
.opt input{
    display: none;
}
.opt:hover{
    cursor: pointer;
}
.opt{
    width: 8em;
    height: 3em;
    text-align: center;
    line-height:3em;
}
.opt-text{
    font-size: 1em;
    font-weight: bold;
}
.opt input:checked + .opt-text{
    color: #304155;
    text-decoration: underline;
}

iframe {
    border: 1px solid #CCC;
}



@media screen and (max-width: 600px) {
    .username{
        text-align:right;
        font-size: 0.8rem;
    }

    .logo{
        width: 6rem;
    }

    .app-image {
        width: 50% !important;
    }

    .header-label {
        margin-left: -30px !important;
    }
}

/* App Styling */
html, body{
    width:100%; margin:0;padding:0;height:100%;
}

.splash-body{
    background-color:#304155;
}

/*
.navbar {
    position: absolute !important;
    top: 0;
    display: inline-block !important;
    width: 100%;
}

.content, .container-feeds
{
    margin-left: 30px;
    margin-right: 30px;
    top: 65px;
    position: absolute;
    width: 100%;
    margin-top: 30px !important;
}*/

.app-subtitle {
    color: white;
    font-style: italic;
    padding-top: 20px;
    text-align: center;
}

.app-subtitle-inner {
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 3.2em;
}

.app-subtitle-inner-sub {
    font-size:1.8em; 
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.create-account {
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 1.8em;
    text-decoration: underline;
}

.header-label {
    font-size: 1.0em;
    color: black;
    font-weight: 600;
    word-break: break-word;
    margin-left: -60px;
    line-height: 25px;
}

.downloadnow_btn {
    display: inline-flex; 
    align-items: center;
    background-color: #F5F5F5;
    padding: 10px;
}

.download-now {
    max-width: 35%;
}

.store_btn {
    cursor: pointer;
    height: 75%;
    padding: 10px 0;
    max-width: 75%;
}

.phone-ads {
    max-height: 500px;
}

[class*="col-"] {
    padding: 0 !important;
}

.form-label {
    color: #838383;
    margin-bottom: 0.2rem;
}

.text-field {
    border-radius: 30px;
    border: 1px solid black;
    color: black;
}

.odd-col {
    padding-right: 5px !important;
}

.even-col {
    padding-left: 5px !important;
}

.round-select {
    background-position: right 10px center;
}

.container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.row {
    margin: auto 0px;
}

.link {
    color: black;
    text-decoration: underline !important;
    float: right;
    font-weight: bold;
}

.link-guest {
    color: #304155;
    text-decoration: underline !important;
    text-align: center;
    font-weight: 500;
    font-size: 1.1em !important;
    cursor: pointer;
}

.lnk-cat {
    color: black;
    font-weight: bold;
}

.lnk-cat-active {
    color: #2BB9F7;
    font-weight: bold;
}

.heart {
    font-size: 25px;
    /*color:#2BB9F7;*/
}

.search { position: relative; }
.search input, .search input:focus {
    text-indent: 30px; border:none; border-bottom:1px solid gray;
    border-bottom: 1px solid #dfdfdf;
    background: transparent;
    border-radius: inherit;}


#category_form{
    margin-top:20px;
}

.switch-ios.switch-toggle label{
    color: #304155 !important;
}

.switch-ios.switch-toggle {
    background-color: #F5F5F5 !important;
}

.search .fa-search { 
    position: absolute;
    top: 11px;
    left: 8px;
    font-size: 18px;
    color: gray;
}

.ad-desc {
    margin: 5px 10px;
    line-height: 20px;
    font-family: Arial !important;
    font-size: 1em;
    color: #727272;
}
.ad-desc.title{
    font-size: 20px;
    color: #304155;
}

input[type="checkbox"] {
    height: 20px;
    width: 20px;    
    -webkit-appearance: none;
}

input[type="checkbox"]:focus {
    outline:none;
}

input[type="checkbox"]:checked {
    color: #EE4F4F;
}

input[type="checkbox"]:checked:before {
    content: '\2714';
    font-size: 20px;
    font-weight: bold;
}

.brand-label {
    font-weight: bold;
    font-size: 1.3em;
    width: 100%;
    padding: 12px 0px 8px 0px;
}

.label-selected{
    color: #EE4F4F;
}

.gallery-div {
    display: flex;
    flex-direction:row;
    align-content:space-between;
    overflow-x:auto;
}

.app-image {
    width: 33%;
    height: auto;
    padding: 10px;
}

.footer{
    background-color: #FFF;
    margin-top: 2em;
    width: 100%;
    text-align: center;
}

.footer-list li{
    list-style-type: none;
    display: inline;
    padding-left: 1em;
    padding-right: 1em;
}

.footer-link{
    color: #fff;
    font-weight: 500;
    font-size: 1em;
}

.footer-link-1{
    color: #304155;
    font-weight: 500;
    font-size: 1em;
}

.footer-link:hover, .footer-link-1:hover{
    text-decoration:none;
    color:#304155;
}

.new-brand-div {
    border: 1px solid lightgray;
    padding: 10px;
    margin-bottom: 10px;
}

.select2-container {
    vertical-align: initial !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    border-radius: 30px;
    border: 1px solid black; 
    height: calc(1.5em + 0.75rem + 2px) !important;
    padding-top: 4px !important;
    padding-left: 11px !important;
    color: black !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    border-radius: 30px;
    border: 1px solid black; 
    /*    height: calc(1.5em + 0.75rem + 2px) !important;*/
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    padding-left: 15px !important;
    color: black !important;
    max-height: 100px;
}

.select2-container--default .select2-selection--single {
    border: none !important;
    border-radius: 30px !important;
    height: calc(1.5em + 0.75rem + 2px) !important;
}

.select2-container--default .select2-selection--multiple {
    border: none !important;
    border-radius: 30px !important;
    display: flex !important;
    flex-direction: column;
    /*    height: calc(1.5em + 0.75rem + 2px) !important;*/
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0px !important;
}

.custom-file-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 65% !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border: none !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 3px !important;
    font-size: 1rem !important;
}

.select2-hidden-accessible {
    height: calc(1.5em + 0.75rem + 2px) !important;
}

.feed-row {
    margin: 15px 0px !important;
    background-color: #FFFFFF;
}

.lnk-view, .lnk-view:hover, .lnk-view:visited{
    background-color:#304155;
    padding: 3px 20px;
    color:#FFF;
    font-size: 1.3em;
    border-radius: 30px;
    text-decoration: none;
}

.tile_buttons .action-button{
    background-color: #EDECEC;
    padding: 6px;
    color: #304155;
    font-size: .7em;
    border-radius: 30px;
    text-decoration: none;
    height: 45px;
    display: block;
    width: 45px;
    line-height: 33px;
    text-align: center;
    margin: 3px 0;
}

.deals-border {
    border: 1px solid lightgray;
    margin: 0 10px;
}

.deals-div {
    max-width: 450px;
    padding-bottom: 100px;
/*    max-height: inherit !important;*/
    margin: 0 auto;
    padding: 0 10px;
}

/*.share-group {
    float: left !important;
    margin: 15px 0 0 10px !important;
}*/

.btn-group {
    display: inline-block !important;
    font-size: 0 !important;
    position: relative !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

.share-group ul {
    float: right !important;
    list-style: none outside none !important;
    margin: 0 !important;
    min-width: 61px !important;
    padding: 0 !important;
}

.share {
    min-width: 17px !important;
}

.share-group li {
    display: block !important;
    font-size: 18px !important;
    list-style: none outside none !important;
    margin-bottom: 3px !important;
    margin-left: 4px !important;
    margin-top: 3px !important;
}

.btn-share {
    background-color: #BEBEBE !important;
    border-color: #CCCCCC !important;
    color: #333333 !important;
}

.caret {
    border-left: 4px solid rgba(0, 0, 0, 0) !important;
    border-right: 4px solid rgba(0, 0, 0, 0) !important;
    border-top: 4px solid !important;
    display: inline-block !important;
    height: 0 !important;
    margin-left: 2px !important;
    vertical-align: middle !important;
    width: 0 !important;
}

#socialShare {
    /*  max-width:59px !important; */
}

#socialShare > a{
    padding: 5px 8px 5px 8px !important;
}

.tile_title {
    padding: 12px 5px;
}

.tagify{
    border: 1px solid gray !important;
    height: max-content;
    /*padding: 5px !important;*/
}

.tile_buttons {
    /*border-top: 1px solid #CECECE;*/
    /*border-bottom: 1px solid #CECECE;*/
    padding: 5px !important;
}

.video-responsive{
    width: 100%;

}
.video-responsive iframe{    
    /*height:100%;*/
    width:100%;
}

.about {
    padding:40px 140px !important;
}

.about_heading{
    font-size: 2.5em; 
    color: #2CBAF7;
}

#ad_options {
    width: 100%;
    border-top: 1px solid #CECECE;
    background-color:#F5F5F5;
    padding: 20px 20px;
    position: fixed; 
    bottom:0%;
    z-index: 90003;
}

.paragraph1 {
    text-align: justify;
    text-align-last: center;
    font-size: 1.4em;
    color: #FFFFFF;
}

.policy-paragraph {
    text-align: justify;
    font-size: 1.2em;
}

.policy-subparagraph {
    margin-top: 0.5rem;
    color: #2CBAF7;
    }

@media (max-width : 320px) {
    #socialHolder{
        padding-left:5px !important;
        padding-right:5px !important;
    }

    .mobile-social-share h3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #socialShare{
        /*        margin-left:5px !important;
                margin-right:5px !important; */
    }

    .mobile-social-share h3 {
        font-size: 15px !important;
    }

    .download-now {
        max-width: 70% !important;
    }

    .mobile-li {
        display: block !important;
    }

    .container-feeds {
        max-width: 100% !important;
    }

    .tabspace {
        max-width: 100% !important;
        padding: 0 !important;
        left: 0 !important;
        transform: initial !important;
        width: 100% !important;
    }

    .tabbar {
        height: 4em !important;
    }

    .deals-div {
        padding-bottom: 60px !important;
        max-height: inherit !important;
        left: 0 !important;
        transform: initial !important;
    }

    .home-link {
        display: none !important;
    }
}

.dropdown-menu {
    min-width: auto !important;
}

@media (max-width : 238px) {
    .mobile-social-share h3 {
        font-size: 12px !important;
    }
    .home-link {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: inline-flex !important;
    }
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */

    /*    .container {
            padding: 0 0 !important;
        }*/

    .about {
        padding:10px 20px !important;
    }

    .about_heading{
        font-size: 1.5em;
    }

    .paragraph1 {
        text-align: justify;
        text-align-last: center;
        font-size: 1.0em;
        color: #FFFFFF;
    }

    .app-subtitle-inner {
        font-size: 2.5em !important;
    }

    .app-subtitle-inner-sub {
        font-size:1.5em; 
        font-weight: 400;
    }

    .download-now {
        max-width: 70% !important;
    }

    .mobile-li {
        display: block !important;
    }

    .container-feeds {
        max-width: 100% !important;
    }

    .tabspace {
        width: 100% !important;
        left: 0 !important;
        transform: initial !important;
    }

    .tabbar {
        height: 4em !important;
    }

    .deals-div {
        padding-bottom: 60px !important;
        max-height: inherit !important;
        left: 0 !important;
        transform: initial !important;
        max-width: 100% !important;
    }

    #search.deals-div {
        padding-bottom: 0px !important;
    }

    .home-link {
        display: none !important;
    }
}

.dropdown-menu.show {
    width: 160px;
    top: 20px !important;
    display: flex !important;
    flex-flow: row wrap;
    position: absolute !important;
    transform: none !important;
    left: -140px !important;
}

.share-icon {
    width: 32px;
    height: 32px;
    margin: 8px 10px;
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    outline:none;
    text-decoration: none;
}

.share-icon.focus, a, a:visited, a:focus, a:active {
    border: 0;
    outline: none;
    text-decoration: none;
    -moz-outline-style: none;
}

a img {outline : none; border:0; -moz-outline-style: none;}

.twitter-icon {
    background: url("../images/app_images/social_icons/twitter.svg");
}

.facebook-icon {
    background: url("../images/app_images/social_icons/facebook.svg");
}

.whatsapp-icon {
    background: url("../images/app_images/social_icons/whatsapp.svg");
}

.email-icon {
    background: url("../images/app_images/social_icons/email.svg");
}

.message-icon {
    background: url("../images/app_images/social_icons/message.png");
    background-repeat: no-repeat;
    background-size: 32px 32px;
}

.mobile-li {
    display: none;
}

.modal {
    height: auto;
    width: 100% !important;
    padding: 15px 20px !important;
    overflow: initial; 
}

.tabspace{
    position: fixed;
    bottom: 0;
    width: 430px;
    left: 50%;
    transform: translate(-50%, 0);
    /* padding: 0 2em 0 2em; */
    z-index: 90001 ;

}

.tabbar{
    background-color: #FFFFFF;
    height: 3em;
    /*border: solid 1px #929292;*/
    /* border-radius: 75px; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 0px 5px 2px #ccc;
}

.tabbar a{
    font-size: 1.0em;
    font-weight: bold;
    color: #929292 !important;
    cursor: pointer;
    font-family: SFProDisplay;
}
.tabbar a.selected{
    color: #304155 !important;
}

.tabbar a img {
    width: 85%;
}

.selected{
    color: #304155 !important;
}

.tablink i{
    font-size: 1.5em;
}

.container-feeds {
    /*max-width: 350px;*/
    height: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
}

.search-field{
    width: 100%;
    height: 3.125em;
    background-color: #FFFFFF;
    border: solid 1px #929292;
    border-radius: 50px;
    padding-left: 1em;
}

#btn_reset{
    position: absolute;
    right: 0;
    margin: 0;
    padding: 0;
    top: 70%;
}
.swal-button {
    background-color: #14a4e8 !important;
}


.select-all {  
    -webkit-appearance: checkbox !important;
}

.select-all:checked:before {
    content : none !important;
}

.sa-content {
    margin: 0px 10px;
    padding-top: 0px;
    position: absolute;
}

.tagify {
    border: 1px solid black !important;
}

.home-link {
    display: intitial;
}

.feeds-comp-img {
    max-width: 48px;
    max-height: 25px;
}

.feeds-comp-img-circle{
    float: left;
    background-color: #FFF;
    border: 1px solid #EDECEC;
    color: #304155;
    border-radius: 30px;
    height: 55px;
    display: block;
    width: 55px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 2px;
    margin-top: 10px;
    margin-left: 10px;
}


#search{
    z-index: 90001 ;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
#search-overlay{
    display: none;
    left: 0;
    /*top: 0;*/
    right: 0;
    /*bottom: 0;*/
    z-index: 90000;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter:blur(27px);
}
.login-page-div {
    /*background-color: #F5F5F5;*/
    /*margin: 0 -10px;*/
    /*padding: 10px;*/
    /*border: solid 1px lightgray;*/
}

.search-box,.close-icon,.search-wrapper {
    position: relative;
    /*	padding: 10px;*/
}
.search-wrapper {
    /*	width: 500px;
            margin: auto;
            margin-top: 50px;*/
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
}
.search-box {
    width: 100%;
    border-radius: 30px;
    border: 2px #8c8c8c61 groove;
    color: black;
}
.search-box:visited {
    box-shadow: none;
    border: none;
}
.close-icon {
/*    border:1px solid transparent;
    background-color: transparent;*/
    display: inline-flex;
    vertical-align: middle;
    outline: 0;
    cursor: pointer;
    z-index: 1;
}
.close-icon:after {
    content: "X";
    display: inline-flex;
    width: 18px;
    height: 18px;
    position: absolute;
    background-color: #080808;
    z-index:1;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding-left: 5px;
    border-radius: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    box-shadow: none;
    cursor: pointer;
}
.search-box:not(:valid) ~ .close-icon {
    display: none;
}

input[type=text]:visited{
  outline: 2px solid orange;     /* oranges! yey */
}

.search-bar-row {
    display:flex; 
    position: absolute; 
    text-align: center; 
    width: 95%;
}

.deals-scroll-div {
    width: 100%; 
    height:95%;
    top: 60px; 
    display: inline-flex; 
    position: relative;
    overflow-y: scroll; 
    scrollbar-width: none;
    overflow-x: hidden;
}

input,
textarea,
[contenteditable] {
  caret-color: gray;
}

#ajaxLoading{
    background: transparent !important;
}

.field-icon {
    float: right;
    position: relative;
    z-index: 2;
    bottom: 26px;
    right: 10px;
}

.tabbar #search_feed {
    font-size: 1.1em;
}
