/******************/
/**** NAV BAR ****/
/****************/

/* Auto Dropdown when hover */
.dropdown:hover .dropdown-menu {
    display: block;
    /*margin-top: 0;*/
    margin: 0;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    background-color: #FFFF00;
    color: #FFC0CB;
}
.search_form {
    /*width: 100%;*/
    height: 30px;
    /*padding: 12px 20px;*/
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    text-decoration-color: black;
}


/* Facebook and Twitter */
.btn-fb{
    color: #fff;
    background-color:#3b5998;
}
.btn-fb:hover{
    color: #fff;
    background-color:#496ebc
}
.btn-tw{
    color: #fff;
    background-color:#55acee;
}
.btn-tw:hover{
    color: #fff;
    background-color:#59b5fa;
}
.btn:hover {
    color: white;
}
@media(max-width:768px){
    #login-dp{
        background-color: inherit;
        color: #fff;
    }
    #login-dp .bottom{
        background-color: inherit;
        border-top:0 none;
    }
}



/****************************/
/**** Global Custom CSS ****/
/**************************/





/*******************************/
/**** GRID Move Categories ****/
/*****************************/


/* Category View */
cat_row_container {
    display: flex;
    flex-wrap: wrap;
}
.cat_container {

}
.cat_header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.bookmarks_container {
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    height: 100%;
}
.bookmark_url {
    text-decoration: none;
}
.bookmark_url:hover {
    text-decoration: underline;
}

/* In-page bookmark reorder mode. The drag handle is rendered in the markup
   for every bookmark but stays hidden until .reorder-mode is set on
   .cat_row_container by the reorder toggle JS. */
.bookmark_handle {
    display: none;
    vertical-align: middle;
    margin-right: 4px;
}
.reorder-mode .bookmark_handle {
    display: inline-block;
}
.reorder-mode .bookmark_url {
    pointer-events: none;
    color: inherit;
}
.reorder-mode .bookmark_list {
    border: 1px solid #6c757d;
    background: #fff;
    margin: 2px 4px;
    padding: 2px 4px;
    cursor: move;
}
.reorder-mode .connectedSortable {
    min-height: 40px;
}
.reorder-banner {
    display: none;
    cursor: pointer;
}




/* Change category sort order */
.grid {
    position: relative;
}
.cat_move {
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cat_move_body {
    cursor: pointer;
    height: 200px;
}
.drag_separator {
    max-height: 50px;
    min-height: 50px;
}











.triangle-right-bottom {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 100vw;
    border-color: transparent transparent #F15A04 transparent;
}
.triangle-left-bottom {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 80px 0;
    border-color: transparent transparent #F15A04 transparent  ;
}
.triangle-right-top {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 80px 0;
    border-color: transparent #F15A04 transparent transparent  ;
}
.triangle-left-top {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 100vw;
    border-color: transparent transparent transparent #F15A04;
}