:root {
    --gray-border: 1px solid rgba(0, 0, 0, 0.0975);
    --light-border: 1px solid #b1b1b138;
    --dark-purple: #151525;
    --purple: #1e1e2d;
    --white-purple: #5a74f6;
    --green01: #2b4d59;
    --green02: #009da5;
    --yellow: #ffdc7c;
    --red: red;
    --orange01: #da674a;
    --orange02: #ffaa67;
    --orange-gradient: linear-gradient(
        175deg,
        var(--orange02),
        var(--orange01)
    );
    --yellow-gradient: linear-gradient(175deg, var(--yellow), var(--orange02));
    --green-gradient: linear-gradient(175deg, var(--green02), var(--green01));
    --green-orange-gradient: linear-gradient(
        175deg,
        var(--green01),
        var(--orange01)
    );
}
h2 {
    font-size: 30px;
    font-weight: 400;
    color: #6d6d6d;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);

    /*-webkit-touch-callout: none;*/
    /*-webkit-user-select: none;*/
    /*-khtml-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
}
*:focus {
    outline: none !important;
    outline-offset: 0;
}

a {
    text-decoration: none;
}

html,
body {
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    font-family: "Roboto Condensed", sans-serif;
    font-family: "Roboto", sans-serif;
    margin: 0;
    background: #f8fafb;
}

body::before {
    content: "";
    display: block;
    width: 220px;
    height: 100vh;
    float: left;
}
.flex {
    display: flex;
}
.content-wrapper {
    display: flex;
}
.menu-list {
    height: 100%;
}
.alert-text {
    background: #ffff93;
    padding: 10px;
    margin: 10px 0;
    color: red;
    border: 1px solid #ffe1e1;
}
.pop-up {
    display: flex;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #00000059;
    justify-content: center;
    align-items: center;
}
.dashboard-info {
    width: 100%;
    display: flex;
}

.dashboard-info .info-item {
    float: left;
    width: 100%;
    padding: 5px;
}
.no-account {
    position: absolute;
    top: 30px;
    right: 40px;
}
/*pedigree card*/
.pedigree-card {
    width: 240px;
    background: #fff;
    border: 1px solid #bdbdbd;
    height: 240px;
    display: flex;
    overflow: hidden;
    margin: 10px auto;
    box-shadow: 0 0 5px #e6e6e6;
}

.left-side {
    float: left;
    width: 100px;
    height: 240px;
    padding: 0 1px;
}

.right-side {
    float: left;
    width: 140px;
    height: 240px;
    padding: 0 1px;
}
.register-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.register-wrapper {
    margin-top: 100px;
    margin-bottom: 30px;
}
.description-title,
.results-title {
    background: #ccc;
    color: #000;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
}

.pigeon-image {
    width: 100%;
    height: 100px;
}

.dropdown-menu.dropdown-menu-right {
    display: none;
}

.check-pigeon {
    color: #dde7f0;
    cursor: pointer;
    width: 30px;
    font-size: 24px;
    line-height: 39px;
    text-align: center;
}
i.check-pigeon.la-check {
    color: #337474;
    font-size: 20px;
}
/*.check-pigeon.fa-check{*/
/*    color:green;*/
/*    font-size: 13px;*/
/*}*/

.pigeon-code {
    color: #d00000;
    font-weight: 600;
    height: 23px;
    width: 100%;
}
.btn {
    padding: 0 15px;
    border-radius: 4px;
    height: 30px;
    display: block;
    margin: 0 2px;
    font-size: 13px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Roboto;
    display: flex;
    align-items: center;
    color: #fff;
}

.btn i {
    font-size: 17px;
    /* margin-left: 5px; */
}

.btn.orange {
    background: var(--orange-gradient);
    font-size: 13px;
}
.btn.yellow {
    background: var(--yellow-gradient);
    color: #ab6600;
}
.btn.yellow i {
    color: #b57d00;
    font-size: 19px;
}
.btn.green {
    background: #12881a;
    color: #fff;
    border-color: #4caf500f;
}

.btn.white {
    background: #f9f9f9;
    color: #7a869e;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    border-color: #e4edf3;
}

.btn.blue {
    background: #1c5fa8;
    line-height: 20px;
    border-color: #4caf500f;
}

.btn.gray {
    background: #96969630;
    color: #696969;
    font-size: 12px;
    line-height: 20px;
    border-color: #8c8c8c0f;
}

.btn.red {
    background: #d61414;
}
.top-button-text {
    margin-left: 5px;
}
.top-button:disabled {
    background: gray;
    opacity: 0.7;
}
.description-content {
    font-size: 13px;
    line-height: 15px;
    padding: 2px 3px;
}

.results-content {
    font-size: 13px;
    line-height: 15px;
    padding: 3px 5px 3px 2px;
    white-space: pre-line;
}
.pigeons-grid .item {
    height: 200px;
    box-shadow: 0 0 12px #efefef;
    margin: 5px -10px;
}
.search-container {
    padding: 15px;
}
.card {
    background: #fff;
    width: 100%;
    flex: 1;
    flex-direction: column;
    display: flex;
    overflow: auto;
}
.card-header {
    background: #fff;
    color: #464457;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    border: none;
    font-size: 16px;
    /*border-radius: 4px 4px 0 0;*/
    padding-bottom: 15px;
    line-height: 34px;
}
.right-section {
    width: 380px;
    margin-left: 15px;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
}
.font-button {
    height: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.navbar-laravel {
    display: none;
}
.main-menu {
    background: #2b4d59;
    background-image: linear-gradient(134deg, #009da5, #2b4d59);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    z-index: 3;
}

li.menu-item {
    list-style-type: none;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    padding-top: 8px;
    position: relative;
}

li.menu-item:hover .sub-menu-list {
    display: flex;
    flex-direction: column;
}

/*li.menu-item:hover,*/
li.menu-item.active {
    background: #2d2d2d30;
    
}
li.menu-item:hover .menu-link,
li.menu-item.active .menu-link {
    color: #d0f1f0;
}
li.menu-item:hover .menu-link i,
li.menu-item.active .menu-link i {
    opacity: 1;
}
a.menu-link i {
    color: #fffdb0;
    opacity: 0.9;
    text-shadow: 0 0 3px #386d73;
}
.sub-menu-list {
    display: none;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    background: #009da5;
    position: absolute;
    left: 220px;
    z-index: 9999;
    top: 0;
    width: 140px;
    box-shadow: 1px 0 2px #ccc;
}

.menu-item i {
    font-size: 22px;
    margin-right: 5px;
    line-height: 30px;
}
.menu-item a {
    color: #d0f1f0;
    display: flex;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    padding: 2px 5px;
    line-height: 30px;
}
.sub-menu-link {
    white-space: nowrap;
}
.menu-item a:hover {
    text-decoration: none;
}

ul.menu-items {
    display: flex;
    float: left;
    margin: 0;
    flex-direction: column;
    padding: 0;
    width: 100%;
}
a.navbar-brand {
    display: flex;
    border-bottom: 1px solid #009da5;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    flex-shrink: 0;
}
.logo-text {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    padding-top: 3px;
}
.logo-text-container {
    padding: 5px;
}
.navbar-brand img {
    height: 40px;
    flex-shrink: 0;
}
.account-type {
    color: var(--yellow);
    font-weight: 400;
    font-size: 13px;
}
.item-title {
    width: 100%;
    text-align: left;
    position: relative;
}
.new-label {
    position: absolute;
    left: -30px;
    background: #ffaa67;
    height: 15px;
    width: 15px;
    justify-content: center;
    line-height: 16px;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    color: #000;
    align-items: center;
    font-weight: 500;
}
.newLabel {
    background: #ffaa67;
    font-size: 11px;
    font-weight: 600;
    color: #026a70;
    padding: 1px 3px;
    border-radius: 2px;
    margin-left: 5px;
    text-transform: uppercase;
}
a.menu-link.parent .la-angle-right {
    font-size: 13px;
    opacity: 1;
    color: #d0f1f0;
    margin: 0;
}
ul.settings {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}
a#navbarDropdown {
    font-size: 24px;
    color: #5e7c94;
    height: 60px;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 60px;
}

ul.admin-categories {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cat-sett {
    width: 33px;
    text-align: center;
    margin-right: 10px;
    color: #738898;
}
.user-header {
    position: fixed;
    top: 0;
    background: #fff;
    width: calc(100% - 220px);
    left: 220px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 9px #a0acb752;
}
.top-header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    border-bottom: var(--light-border);
}
.top-controller {
    /* background: #4e4f4f; */
    background: #fff;
    flex-shrink: 0;
    height: 50px;
    /* color: #fff; */
    font-weight: 300;
    padding: 10px;
    display: flex;
    line-height: 30px;
    justify-content: space-between;
}
.user-info {
    line-height: 40px;
    padding: 0px 15px;
    background: #f10000;
    font-size: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.close-user-info {
    font-size: 18px;
    color: #ffe1e1;
    cursor: pointer;
}
.left-top-container {
    display: flex;
    align-items: center;
}
li.admin-cat {
    line-height: 41px;
    width: 100%;
    border-bottom: 1px solid #f0f3ff;
    display: flex;
    flex-wrap: wrap;
}
.top-controller .page-title {
    padding-right: 15px;
    padding-left: 5px;
    margin-right: 10px;
    border-right: 1px solid #80808026;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
}
.top-controller .page-title.left-margin {
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid #80808026;
}
.filter-group:hover .filter-content {
    display: flex;
}
.total-pigeons {
    padding: 0 10px;
    color: #697279;
    font-size: 15px;
}
.filter-content {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
    position: absolute;
    top: 25px;
    left: 20px;
    box-shadow: 0 1px 12px #00000026;
    z-index: 4;
}
.filter-item {
    display: flex;
    line-height: 34px;
    color: #000;
}
.search-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-left: var(--light-border);
    border-right: var(--light-border);
}
.mobile-filter-toggle {
    display: none;
    font-size: 20px;
    color: #000;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #efefef;
    flex-direction: column;
}
.mobile-filter-toggle span,
.search-mobile-toggle span {
    font-size: 10px;
    line-height: 10px;
}
.pigeon-round-img {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    overflow: hidden;
    float: left;
    margin-top: 5px;
    border: 1px solid #e6e6e6;
    margin-right: 10px;
    cursor: pointer;
}
.table-data.pigeon-select {
    height: 39px;
}
.pigeon-round-img img {
    width: 100%;
}

.pigeon-round-img:hover {
    width: 400px;
    height: auto;
    position: absolute;
    transition: 0.2s ease;
    box-shadow: 0 0 14px #00000021;
    background: #fff;
}
label.add-category-label {
    font-size: 15px;
    font-weight: 500;
    color: #464457;
}
.user-toggle:hover .settings-menu {
    display: flex;
}
/*li.admin-cat::before {*/
/*content: '';*/
/*position: relative;*/
/*height: 0px;*/
/*display: block;*/
/*top: 50%;*/
/*width: 10px;*/
/*left: -10px;*/
/*border-top: 1px dotted #98adbd;*/
/*}*/
/*li.admin-cat::after {*/
/*content: '';*/
/*position: relative;*/
/*height: 95%;*/
/*display: block;*/
/*width: 10px;*/
/*top: -100%;*/
/*left: -10px;*/
/*border-left: 1px dotted #98adbd;*/
/*}*/

/*li.admin-cat.first::before, li.admin-cat.first::after {*/
/*display: none;*/
/*}*/

/*li.admin-cat.first {*/
/*margin-left: -24px;*/
/*}*/

/*.admin-cat.first a {*/
/*background: #f9f9f9;*/
/*border-radius: 20px;*/
/*color: #2bad30;*/
/*padding: 2px 10px;*/
/*}*/

li.admin-cat .category-link {
    font-size: 15px;
    color: #505050;
    transition: 0.1s;
    width: 100%;
    display: block;
    line-height: 38px;
    padding-left: 20px;
}

input#add-category {
    width: 100%;
    height: 34px;
    padding-left: 15px;
}

.form-group.add-category-input {
    display: block;
}

li.admin-cat:last-child::after {
    height: 50%;
}

li.admin-cat a:hover {
    background: #f9f9f9;
    text-decoration: none;
    color: #5e7c94;
    border-color: #2bc16b;
}
.sort-by i {
    color: #dadada;
    font-size: 15px;
}
.sort-by i:hover,
.sort-by i.active {
    color: #ff8415;
}

.left-menu {
    width: 270px;
    flex-shrink: 0;
    margin: 10px;
}

.right-content {
    width: 100%;
    margin: 5px;
}
.right-menu {
    margin: 5px;
}

.admin-content {
    display: flex;
}
.filters {
    display: flex;
}
.filter-group {
    display: flex;
    margin-left: 10px;
    position: relative;
    /* background: var(--green-gradient); */
    height: 30px;
    line-height: 30px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    /* box-shadow: inset 0 0 2px #000; */
    color: #ffffff;
    /* border: 1px solid #6f6f6f; */
}
.table-row {
    width: 100%;
    display: flex;
    line-height: 39px;
    border-bottom: var(--light-border);
    padding: 0 10px;
}
.filters-container {
    display: flex;
    height: 50px;
    padding: 10px;
}
.counter {
    margin-right: 10px;
    font-size: 15px;
    line-height: 1;
}
.filter-label {
    font-size: 14px;
}
select.filter-selector {
    border: var(--light-border);
    height: 34px;
    border-radius: 2px;
}

.login-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.pigeon-data {
    display: flex;
}
.pigeon-data {
    flex: 1;
}

.pigeons-actions {
    width: 40px;
    flex-shrink: 0;
}
.table-data.pigeon-status {
    font-size: 13px;
    width: 60px;
}
.green-text {
    color: #00ab00;
}
.gray-text {
    color: #8a8a8a;
}
.input-group-text {
    background: #f9f9f9;
    font-size: 13px;
    font-weight: 600;
    color: #7a869e;
    border-color: #efefef;
}
.font-controller {
    display: flex;
    gap: 15px;
    padding: 10px;
}
.search-field {
    margin-top: -3px;
}
/*.main-content {*/
/*    display: flex;*/
/*    padding:20px;*/
/*    width:100%;*/
/*    margin-top:50px;*/
/*}*/
.left-section {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
    flex-direction: column;
}
.input-group-prepend {
    height: 38px;
    line-height: 31px;
    font-size: 22px;
    float: left;
    background: #f9f9f9;
    border: 1px solid #e4edf3;
    padding: 0 10px;
    border-right: 0;
    border-radius: 4px 0 0 4px;
}
.top-search-group {
    position: relative;
}
.top-search-icon {
    position: absolute;
    right: 10px;
    top: 0;
    height: 36px;
    line-height: 38px;
    font-size: 19px;
    text-align: center;
    color: #dcdcdc;
}
input#search {
    max-width: 261px;
    border-radius: 4px;
    border: 1px solid #ccccccb8;
    height: 30px;
    padding-left: 10px;
    color: #1e1d1d;
    background: #f5f5f5;
    box-shadow: inset 0 -1px 2px #4747471a;
    margin-top: 3px;
}
input#search::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(59, 59, 59);
    opacity: 1; /* Firefox */
}

input#search:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgb(59, 59, 59);
}

input#search::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgb(59, 59, 59);
}
.p15 {
    padding: 15px;
}
.p20 {
    padding: 20px;
}

div#admin-email-pop-up {
    position: fixed;
    top: 60px;
    left: 50%;
    display: none;
    z-index: 999;
}
.pop-up-container {
    position: relative;
    left: -50%;
    border-radius: 4px;
    background: #fff;
    padding: 20px;
    min-width: 260px;
    width: 100%;
    max-width: 600px;
    display: block;
    box-shadow: 0 0 32px #adc8d69e;
}

.pedigree-item {
    background: #e4edf3;
    width: fit-content;
    padding: 5px;
    border-radius: 4px;
    margin: 2px;
}
#pop-up-response {
    display: none;
}
.pedigrees-list {
    display: flex;
    justify-content: center;
}
.pigeon-serial {
    font-size: 15px;
    color: #000000;
    flex: 1;
    font-weight: 600;
}
.pigeon-name {
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    opacity: 0.8;
}
.pigeon-id {
    width: 100px;
    padding: 0 10px;
    text-align: left;
    flex-shrink: 0;
}

.pedigree-column {
    width: 220px;
    flex-shrink: 0;
}
.row-header.pigeon-checks {
    width: 30px;
    flex: 0;
}
.pigeon-actions {
    flex-shrink: 0;
    flex-direction: column;
    position: absolute;
    right: 0;
    background: #fff;
    display: none;
    z-index: 10;
    box-shadow: 0 0 3px #0000002e;
    border-radius: 3px;
    border: 1px solid #eeeeee;
    align-items: flex-end;
    padding: 10px 15px;
    top: 35px;
}
.pigeon-actions-container {
    text-align: center;
    position: relative;
    cursor: pointer;
}
.pigeon-toggle-btn {
    width: 40px;
    height: 40px;
}

.table-data.pigeon-actions a,
.table-data.pigeon-actions button {
    color: #000;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: flex-end;
    border: none;
    padding: 0;
    background: transparent;
}
.table-data.pigeon-actions .delete-btn {
    color: var(--red);
}
.table-data.pigeon-actions i {
    font-size: 16px;
    margin-left: 5px;
}
.table-data.pigeon-actions button {
    padding: 0;
    line-height: 34px;
    margin: 0;
    height: unset;
    font-size: 14px;
    text-shadow: none;
    font-weight: 500;
    cursor: pointer;
}

.pigeon-actions:hover {
    display: flex;
}
.table-row:hover {
    background: #fbfbfb;
}
.loading-container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
    justify-content: center;
    top: 0;
    left: 0;
    align-items: center;
    background: #9880ff1f;
}

.small-name {
    font-size: 14px;
    font-weight: 400;
    display: none;
    opacity: 0.4;
    margin-top: 3px;
}
.small-name .pigeon-sex {
    font-size: 15px;
    margin-right: 5px;
}
.mobile-pigeon-button {
    text-align: center;
    right: 10px;
    padding: 0 10px;
    color: #365d7b;
    display: none;
}

.transparent {
    background: transparent !important;
    border: 0;
}
.form-control {
    line-height: 36px;
    border-radius: 2px;
    border: 1px solid #b3b3b342;
    background: #fff;
    padding: 0 10px;
    box-shadow: inset 0 0 5px #f3f3f3;
}
.font-changer .form-control {
    width: 34px;
    text-align: center;
}
.input-group label {
    margin-bottom: 5px;
}
.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.form-control.is-invalid {
    border: 1px solid var(--red);
}
.error-message {
    color: var(--red);
    font-size: 14px;
}
.after-input {
    font-size: 14px;
    color: var(--green02);
}
.attributes {
    display: flex;
    flex-wrap: wrap;
}
.attribute-selector {
    padding: 10px;
    flex: 1;
}
.attributes-container {
    margin: 30px 0;
}
.attributes-toggle {
    padding: 10px;
    background: #f3f3f3;
    border-radius: 2px;
    margin: 0 10px;
}
.sub-title {
    padding: 10px;
    background: #f3f3f3;
    border-radius: 2px;
}
.settings-card.card {
    max-width: 340px;
    float: left;
    width: 100%;
    margin: 15px;
}
.form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.settings-groups {
    display: flex;
    flex-wrap: wrap;
}
.admin-settings-group {
    width: 50%;
    padding: 20px;
}
.settings-form {
    padding: 10px;
}
.user-address {
    padding: 15px;
    border: var(--light-border);
    margin: 5px 0;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
}
.address-name {
    font-weight: 500;
    margin-bottom: 10px;
}

/*PAYMENTS*/
.payment-item {
    background: #f5f5f5;
    margin-bottom: 5px;
    border-radius: 2px;
    padding: 15px;
}
.payment-info {
    gap: 15px;
}
.payment-info-item {
    flex: 1;
    background: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
}
.payment-info-item.unpaid {
    color: #000;
}
.payment-info-item.paid {
    color: #22972c;
}
.payment-info-item.pending {
    color: #6e6e6e;
}
.payment-info-item span {
    color: #838383;
    font-weight: 400;
}
.payment-description {
    padding: 10px 0;
    color: #00393f;
    opacity: 0.8;
}
.admin-secondary-header {
    padding: 10px;
    background: #f1f4f6;
    border-radius: 4px;
    font-weight: 500;
    color: #4e4f4f;
    display: flex;
    justify-content: space-between;
}
.admin-settings-body {
    padding: 15px;
}
.attention-msg {
    font-size: 14px;
    background: #fff59d;
    padding: 10px;
    border-radius: 2px;
    margin: 10px 0;
}
.profile-images-group {
    display: flex;
}
.actual-image {
    display: flex;
    max-width: 100px;
    align-items: stretch;
}
.actual-image img {
    width: 100%;
    flex: 1;
}
.profile-settings-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-flex-body {
    display: flex;
}
.form-container{
    padding: 10px;
}
.pigeon-images-container{
    padding: 10px;
}
.pigeon-images {
    display: flex;
    margin: 20px 10px;
    background: #ffffff;
}
.pigeon-form-content .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 2px;
}
.pigeon-form textarea {
    height: 100%;
    min-height: 160px;
    line-height: unset;
}
.pigeon-form-content {
    display: flex;
}
.form-group label {
    font-size: 14px;
    line-height: 30px;
    color: #547188;
}
.pigeon-sex .fa-mars {
    color: #07a3b7;
}
.pigeon-individual-data {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.pigeon-results {
    width: 100%;
    flex-direction: column;
    display: flex;
    height: 100%;
}
.pigeon-results .form-group {
    height: 100%;
}
.pigeon-individual-data .form-group {
    width: 50%;
}
.price-input{
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 500px) {
    .pigeon-individual-data .form-group {
        width: 100%;
    }
}
.pedigree-card .pigeon-image img {
    width: 100px;
}

.pigeon-sex .fa-venus {
    color: #ffa1b1;
}

/* PIGEON PAGINATION */
ul.pagination {
    list-style-type: none;
    display: flex;
    width: 500px;
}
a.page-link {
    background: #ffffff;
    border-radius: 4px;
    color: var(--dark-purple);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
    text-align: center;
    line-height: 29px;
    font-size: 14px;
    font-weight: 500;
}
a.page-link[aria-label="pagination.previous"],
a.page-link[aria-label="pagination.next"] {
    font-size: 28px;
    line-height: 24px;
}
li.page-item {
    padding: 0 10px;
}

.active span.page-link,
a.page-link:hover {
    background: #1c5fa8;
    color: #ffffff;
    width: 28px;
    height: 28px;
    display: block;
    box-shadow: 0 0 1px #0000005c;
    text-align: center;
    border-radius: 4px;
    line-height: 28px;
}

/* END PAGIANTION */
.form-group select {
    background: #ffffff;
    border-radius: 2px;
    width: 100%;
    padding-left: 5px;
    line-height: 36px;
    height: 36px;
    cursor: pointer;
}

.sort-by select {
    height: 34px;
    width: unset;
    line-height: 34px;
}
.sort-container {
    border-bottom: 1px solid #edf3f5;
    padding: 5px 15px;
    display: none;
}

.admin-bottom-actions {
    display: flex;
    line-height: 50px;
    color: #bee2de;
    font-weight: 300;
}
.user-options.user-toggle {
    border-radius: 2px;
    height: 34px;
    line-height: 36px;
    color: #fff;
    font-weight: 400;
    margin: 10px;
    background: var(--orange01);
    box-shadow: 0 0 5px #0000002e;
    position: relative;
    flex: 1;
    text-align: center;
}
.user-menu-link i {
    font-size: 42px;
    position: absolute;
    left: -11px;
    color: var(--orange02);
    top: -6px;
    text-shadow: none;
    opacity: 0.6;
    cursor: pointer;
}
.user-menu-link {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 15px;
    height: 100%;
}
.notification-button {
    height: 34px;
    line-height: 34px;
    font-size: 21px;
    background: var(--orange01);
    margin-right: 15px;
    border-radius: 2px;
    margin-bottom: 15px;
    color: var(--yellow);
    width: 34px;
    text-align: center;
    box-shadow: 0 0 5px #0000003b;
}

.admin-notification {
    position: fixed;
    top: 0;
    z-index: 999;
    background: #bfbfbf;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    max-height: 100vh;
}
.email-verification-notification {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.notification-accept-button {
    color: #000;
    background: #fff;
    padding: 0.5em;
    box-shadow: 0 0 5px #00000040;
    border-radius: 2px;
    margin: 0 10px;
    cursor: pointer;
}
.close-admin-notification {
    background: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: absolute;
    right:5px;
    top:5px;
}
span.user-settings-text {
    z-index: 3;
    position: relative;
    font-size: 15px;
}
.settings-menu {
    display: none;
    position: absolute;
    margin: 5px;
    background: #fff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 4px;
    text-align: right;
    box-shadow: 0 0 27px #657f8840;
    left: 5px;
    bottom: 25px;
    flex-direction: column;
}
.user-menu-item a {
    font-size: 15px;
    line-height: 24px;
    color: #000;
    text-shadow: none;
    white-space: nowrap;
}
.subscription-type h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}
.subscription-type p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.profile-info {
    color: #000000;
    font-weight: 300;
    font-size: 15px;
    margin-right: 20px;
}
.profile-data-row {
    display: flex;
    padding: 5px;
}
.buttons {
    display: flex;
    padding-top: 15px;
    justify-content: space-between;
    border-top: 1px solid #d4d5d645;
    margin-top: 15px;
}
.expiration-date {
    width: 100%;
    text-align: center;
    background: #f3f3f3;
    border-radius: 4px;
    font-size: 12px;
    line-height: 25px;
    margin-top: -5px;
    margin-bottom: 10px;
    color: #000;
}
a.settings-menu-btn.blue-btn {
    display: flex;
    color: var(--green02);
    font-size: 16px;
    align-items: center;
}
a.settings-menu-btn.logout-btn {
    font-size: 14px;
    display: flex;
    color: #cc0000;
    align-items: center;
}
.settings-menu-btn i {
    margin-right: 2px;
}
.subscription-type {
    color: var(--green01);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.table-data {
    padding: 0 10px;
    flex: 1;
}
.table-data.pigeon-select {
    padding: 0;
    flex: 0;
}

.added {
    text-align: left;
    font-size: 12px;
}

.card-header {
    border-bottom: 1px solid #f4f7f9;
}

.menu-toggle {
    width: 50px;
    color: #ffffff;
    display: none;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    flex-shrink: 0;
}

li.auction-item {
    width: 100%;
    list-style-type: none;
    padding: 10px;
}
li.auction-item .card {
    width: 100%;
    border: var(--light-border);
    padding: 20px;
}
.tbl-col {
    width: 100%;
}
.auctions-selector {
    display: flex;
}
.select-item {
    color: #fff;
    padding: 0 10px;
    font-size: 14px;
    margin-left: 15px;
    cursor: pointer;
    line-height: 31px;
    background: #cacaca;
    border-radius: 4px;
    font-weight: 400;
}
.select-item a {
    color: #000000;
}

.select-item.active {
    background: #333;

    box-shadow: inset 0 0 2px #ffffff85;
}
.select-item.active a {
    color: #ccc;
    /* text-shadow: 0 0 3px #842b00; */
}
.auction-groups {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
/* AUCTION EDIT */
.auction-edit-form input, .auction-edit-form textarea{
    width: 100%;
}
.auction-edit-form textarea{
    height: 60px;
}

.progress-bar {
    display: block;
    width: 100%;
    background: #fff;
    height: 5px;
}
.progress {
    height: 5px;
    background: #ff5722;
}
.times {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.auction-period {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    background: #efefef;
    width: 100%;
    border-radius: 2px;
}
.auction-details-container {
    display: flex;
}
.progress-bar-container {
    width: 100%;
    margin-top: 5px;
}
.auction-details {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}
.pigeons-count {
    line-height: 49px;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    width: 100%;
}

/*Auction Admin*/
.auction-pigeon {
    width: 100%;
    display: flex;
    border-radius: 1px;
    padding: 10px 15px;
    border-bottom: var(--light-border);
}
.auction-pigeon.ui-sortable-handle:active {
    cursor: move;
}
.auction-pigeon:last-child {
    border-bottom: 0;
}
.auc-pigeons-list {
    border: var(--light-border);
}
.auction-order {
    width: 50px;
    flex-shrink: 0;
    margin-right: 5px;
}
.auction-pigs-list-container {
    margin-top: 15px;
}
.tbl-hdr {
    line-height: 20px;
    font-size: 13px;
    background: #4e4f4f;
    color: #f1f1f1;
    margin: 0;
    display: flex;
    border-radius: 2px 2px 0 0;
    padding: 0 15px;
}
.auction-start-price-select {
    width: 140px;
    flex-shrink: 0;
}
.auction-expiration {
    width: 100%;
}
.auction-start-price {
    width: 100%;
}
.auction-title {
    width: 40px;
    flex-shrink: 0;
    text-align: center;
}
.group-option {
    padding-left: 10px;
}
.bidder-level {
    color: #e2e2e2;
}
i.fill {
    color: red;
}
.bidder-account-info {
    padding: 10px;
}
.auc-pigeons-list input {
    height: 40px;
    margin: 3px;
    border-radius: 2px;
    border: 1px solid #808080e6;
    padding-left: 10px;
}
.auction-bids-count {
    width: 75px;
    text-align: center;
    flex-shrink: 0;
}
.auction-data {
    border: var(--light-border);
    padding: 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.auction-bids-list {
    padding: 5px;
    list-style: none;
    border: var(--light-border);
    margin: 10px;
    line-height: 26px;
    border-radius: 2px;
}
.auction-bids-list li {
    padding: 0 10px;
    font-size: 15px;
    font-weight: 300;
}
.until {
    padding: 0 10px;
}
.auc-pig-code {
    width: 100%;
    color: #cc0000;
    font-size: 15px;
}
.auction-item .title {
    font-weight: 500;
    font-size: 17px;
    margin-left: 8px;
}
.auction-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.active-period {
    display: flex;
    font-size: 15px;
    background: #cccccc42;
    width: fit-content;
    padding: 5px 8px;
    border-radius: 3px;
    margin: 10px 0;
    float: left;
}
.options-list {
    display: flex;
    align-items: center;
    height: 100%;
}
.auction-item .auction-description {
    font-size: 16px;
    font-weight: 300;
    margin: 20px 0;
}
.date-pickers-container {
    display: flex;
    margin: 10px 0;
}
.date-pickers {
    display:flex;
}
.date-pickers .form-group{
    position: relative;
}
.date-picker {
    width: 250px;
    height: 240px;
}
.validated-auction span {
    font-size: 11px;
    color: #8b0000;
}
.validated-auction .la-exclamation-triangle {
    color: #c60000;
    margin: 0 3px 0 5px;
}
.qs-datepicker-container {
    box-shadow: none;
    border: 1px solid #ebebeb;
    border-radius: 2px;
}
.date-picker:first-child {
    margin-right: 10px;
}
.qs-controls {
    color: #505050;
    background: #f3f3f3;
    height: 30px;
}
.qs-square.qs-day {
    color: #337675;
    font-weight: 300;
    font-size: 15px;
}
.qs-current {
    font-weight: 700;
    color: #2e5c64;
    text-decoration: none;
}
.add-pigeon-btn-wrapper {
    display: flex;
    line-height: 34px;
    padding: 10px;
    background: #cccccc2e;
    margin-top: 10px;
    border-radius: 4px;
    width: fit-content;
}
.add-pigeon-btn-wrapper input {
    margin: 0 10px;
}

.download-winners-list {
    display: flex;
    margin-top: 10px;
}
.purchase {
    display: flex;
    margin: 10px;
    padding: 15px;
    border: var(--light-border);
    border-radius: 2px;
}
.purchase-image img {
    width: 100px;
}
img.purchase-secondary-image {
    height: 70px;
}
/*MASTER MENU*/
.master-menu {
    border-top: 1px solid var(--green02);
}
/*ADMIN MESSAGES*/
.message-line {
    display: flex;
    height: 40px;
    padding: 0 10px;
    align-items: center;
    border-bottom: var(--light-border);
}
.message-detail {
    flex: 1;
    font-size: 14px;
}
.new-message {
    font-size: 24px;
    padding-right: 10px;
}
.new-message > .la-envelope-open {
    color: #c7c7c7;
}
.new-message > .la-envelope {
    color: var(--red);
}
.message-details {
    display: flex;
    flex: 1;
    align-items: center;
    color: #000;
    cursor: pointer;
}
.message-mark-as {
    position: relative;
}
.message-mark-as:hover .mark-as-dropdown {
    display: block;
}
.mark-as-dropdown {
    display: none;
    background: #fff;
    padding: 15px;
    position: absolute;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: 0 0 5px #00000045;
}
.message-actions {
    display: flex;
    font-size: 22px;
    color: #505050;
    width: 90px;
    flex-shrink: 0;
    background: #f5f5f5;
    align-items: center;
    border-radius: 2px;
    height: 32px;
    box-shadow: 0 0 2px #00000030;
}
.message-mark-as,
.message-delete {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-header {
    background: #f5f5f5;
    padding: 15px;
    line-height: 30px;
}
.message-content {
    margin-top: 20px;
}
/*PIGEON ADD/EDIT */

.border-and-inset {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    box-shadow: inset 0 0 5px #f3f3f3;
}

.image-item input[type="file"] {
    display: none;
}
.image-item img {
    width: 100%;
}
.subcategories {
    margin: 0;
    padding-left: 20px;
}
.category-item {
    list-style-type: none;
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #0001;
}
/* .subcategories > .category-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 13px;
    border-bottom: 1px dotted gray;
    margin-left: -10px;
    margin-top: -11px;
    height: 20px;
    border-left: 1px dotted gray;
} */
.category-details input {
    position: relative;
    z-index: 20;
}
.pigeon-images .image-item {
    width: 70px;
    flex-shrink: 0;
    height: 70px;
    border: 1px solid #eaeaea;
    margin: 0 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: 2px;
    cursor: pointer;
}
label.add-pigeon-image {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
label.add-pigeon-image i{
    font-size: 20px;
    color: var(--red);
    margin-top: 10px;
}
.icon-btn {
    display: flex;
    width: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #317071;
    cursor: pointer;
}
button.icon-btn {
    border: 0;
    background: transparent;
    padding: 0;
}
.pedigree-icons {
    width: 160px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    height: 100%;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    background: #0000002b;
}
.overlay .button {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.overlay .button .la {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
}
.sortable-images {
    display: flex;
    padding: 0;
    margin: 0;
}
.attribute-selector .form-group {
    flex-direction: column;
}

/*LOGIN*/
.login-form-group .form-control {
    width: 300px;
    margin: 5px 0;
    border-radius: 4px;
    background: #e8edf1;
    border: 0;
    padding: 5px 15px;
    font-size: 15px;
}
select.form-control {
    height: 40px;
}
.form-check {
    text-align: left;
    margin: 10px 0;
    color: #545454;
}
.login-title h2,
.register-title h2 {
    margin-top: 0;
}
.login-form-group.login-submit {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.terms-and-cond-input {
    display: flex;
    margin: 10px;
}
.legal-inputs {
    margin-bottom: 30px;
}
.big-btn {
    border: 0;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    height: 40px;
    cursor: pointer;
}
.btn-purple {
    background: var(--purple);
    color: #e8edf1;
}
a.forgot-password-link {
    color: #464545;
    display: block;
    border-top: 1px solid #e8edf1;
    padding-top: 20px;
    text-decoration: underline;
    font-weight: 300;
}
label.form-check-label {
    font-weight: 300;
}
/*REGISTER*/
.subscription-packs {
    display: flex;
}
.subscription-section .subheader {
    color: #000000;
    font-size: 20px;
    position: absolute;
    opacity: 0.8;
    top: -30px;
    left: 5px;
}
.pack-name {
    color: #ff825a;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
}
.pack-info {
    font-weight: 500;
    font-size: 15px;
}
.subscription-section {
    background: #e8edf1;
    padding: 10px;
    margin: 40px -30px;
    border-radius: 10px;
    position: relative;
}
.pack-extra-info {
    font-size: 12px;
    color: #909090;
    font-weight: 400;
    margin-top: 3px;
}
.pack-details {
    color: #4e4e4e;
}
.pack-features {
    text-align: left;
    padding-left: 20px;
    font-size: 15px;
}
.feature-item{
    white-space: nowrap;
}
.subscription-pack {
    padding: 20px;
    background: #fff;
    margin: 10px;
    border-radius: 10px;
    width: 100%;
}
/*WINDY*/
.windy-iframe {
    border-radius: 5px;
}
.windy-options {
    display: flex;
}
/*MASTER*/
.subscriptions-list {
    display: flex;
    padding: 10px;
    border-top: 1px solid #dddddd;
    cursor: pointer;
    align-items: center;
    min-width: 1440px;
}
.user-data {
    flex:1;
    padding: 0 5px;
    font-size: 15px;
}

.user-data.user-id {
    width: 60px;
    flex: 0;
    flex-shrink: 0;
}
div.expired {
    background: #ffd9d9;
}
div.validated {
    color: green;
}
.user-data span{
    color: #888;
    font-style: italic;
    font-size: 14px;
    margin-right: 10px;
}
.subscriptions-list.subscriptions-list-header {
    background: #f1f4f6;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    border-bottom: 0;
}
.master-auctions {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.master-auction {
    display: flex;
    padding: 5px 10px;
    border-bottom: 1px solid #f1f4f6;
}
.master-auction-detail {
    width: 100%;
}
/*ALERT*/
.alert-success {
    position: fixed;
    background: #8bc34a;
    z-index: 100;
    padding: 10px 15px;
    color: #fff;
    right: 15px;
    border-radius: 2px;
    text-shadow: 0 0 3px #398e3e;
    line-height: 21px;
    top: 30px;
}
.alert.alert-success.danger {
    background: #f00;
}
button.close {
    background: #fff;
    border: 0;
    border-radius: 50%;
    font-size: 18px;
    color: #0e9e14;
    padding: 0;
    width: 20px;
    height: 20px;
    margin-left: 15px;
    cursor: pointer;
}

.close-mobile-menu {
    display: none;
}
.toggle-starting-price-edit {
    margin-right: 10px;
    cursor: pointer;
}
.toggle-starting-price-edit i {
    color: #0073ce;
    font-size: 20px;
}
.starting-price-col {
    display: flex;
}
.top-back-button {
    background: #212121;
    width: 32px;
    text-align: center;
    font-size: 20px;
    border-radius: 2px;
}
.top-back-button a {
    color: #ccc;
}
.validated-auction {
    background: #efefef;
    margin-right: 5px;
    border-radius: 2px;
    width: 84px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #d0d0d0;
    cursor: pointer;
}
.validated-auction {
    background: #efefef;
    margin-right: 5px;
    border-radius: 2px;
    width: 84px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #d0d0d0;
    cursor: pointer;
    padding: 10px 0;
}
i.las.la-user-clock {
    color: #8b0000;
    font-size: 20px;
    margin-bottom: 5px;
}
.validated-auction.pending {
    flex-direction: column;
}
.validated-auction .mini-btn {
    margin-top: 5px;
}
button.mini-btn.red {
    border: 0;
    color: #d50303;
    font-size: 12px;
    cursor: pointer;
}
.validation-actions {
    display: flex;
    justify-content: space-evenly;
}
.validated-auction.validated {
    color: #00bd0c;
    background: #d9ecda;
    width: 50px;
}
.admin-pigeons-list {
    overflow: auto;
    position: relative;
    flex: 1;
    animation: fade-up 0.2s ease;
    padding-bottom: 50px;
}
.auction-valid-container {
    display: flex;
    width: 100%;
}
/*POPUP*/
.pop-up {
    display: flex;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #00000059;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}
.pop-up-inner{
    max-height: calc(100vh - 80px);

    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 20px;

}
.pop-up-content {
    background: #fff;
    max-height: calc(100vh - 120px);
    overflow: auto;
}
.close-pop-up {
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px;
    background: #000;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 24px;
}

/*BLOG ARTICLES*/
.article-item {
    display: flex;
    border-bottom: var(--light-border);
    padding: 10px 0;
    align-items: center;
}

.article-title {
    flex: 1;
    font-size: 14px;
    color: #000;
}

.article-published {
    padding: 0 15px;
    font-weight: 600;
    font-size: 13px;
    opacity: 0.5;
}

.article-actions {
    display: flex;
    align-items: center;
}

/*CRESCATORIE*/
.table-header {
    display: flex;
    background: #eee;
    height: 50px;
    padding: 0 10px;
    align-items: center;
    border-bottom: 1px solid #1c5fa82e;
}
.row-header {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1c5fa8;
}
.row-header.pigeon-checks {
    padding: 0;
}

.pigeons-table {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.table-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px);
}

.main-content {
    display: flex;
    /*padding: 20px;*/
    width: 100%;
    height: calc(100vh - 50px);
    margin: 0;
    margin-top: 50px;
    flex: 1;
}

.table-data a {
    color: #4e4f4f;
}
.pedigree-image {
    position: relative;
}
.rectangles-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.pre {
    display: block;
    unicode-bidi: embed;
    font-family: monospace;
    white-space: pre-line;
}
.rectangle {
    border: 2px solid #ff6a00;
    position: absolute;
}

.pagination-footer {
    background: #eee;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 220px;
}

/* PIGEON TRANSFER */
.pigeon-transfer {
    display: flex;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    margin: 10px 0;
    align-items: center;
    gap: 15px;
}
.transfer-actions{
    display: flex;
    gap: 10px;
}
.transfer-time{
    font-size: .75rem;
}

.transfer-data{
    font-size: .875rem;
}

.transfer-data span{
    font-weight: 600;
}

.register-btn{
    font-size: 1rem;
    padding: 1em;
}

.terms-and-cond-text {
    text-align: left;
    font-size: .875rem;
}
.terms-and-cond-text a{
    color: #000;
    text-decoration: underline;
}

@media only screen and (max-width: 550px) {
    .date-pickers{
        flex-direction:column;
        gap:15px;
    }
}


@media screen and (max-width: 1200px) {
    .auction-details-container {
        flex-wrap: wrap;
    }

    .tbl-col.auction-order {
        width: 30px;
        flex-shrink: 0;
        justify-content: center;
    }
    .auction-pigeon.tbl-hdr {
        display: none;
    }
    li.auction-item {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    body::before {
        content: "";
        display: block;
        width: 100%;
        height: 90px;
        float: left;
    }
    .main-content {
        height: 100% !important;
        overflow-x: hidden;
        min-height: 100vh;
        flex-wrap: wrap;
    }
    .pagination-footer {
        left: 0;
    }
    
    .p20 {
        padding: 10px;
    }
    .card-flex-body {
        flex-direction: column;
    }
    .admin-settings-group {
        width: 100%;
        padding: 10px;
    }
    .user-header {
        top: 50px;
        left: 0;
        width: 100%;
    }
    .subscription-section {
        padding: 10px;
        margin-top: 50px;
    }
    .subscription-pack {
        padding: 10px;
        margin: 0 0 10px 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row-reverse;
    }
    .subscription-pack:last-child {
        margin: 0;
    }
    .subscription-packs {
        flex-direction: column;
    }
    .subscription-section .subheader{
        text-align: center;
        font-size: 1rem;
        display: block;
        width: 100%;
    }
    .main-menu {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 50px;
        border-right: 0;
        border-bottom: var(--gray-border);
    }
    ul.sub-menu-list {
        position: unset;
        left: 0;
        width: unset;
        background: #00000014;
        box-shadow: none;
        border-radius: 2px;
    }
    a.navbar-brand {
        width: 100%;
        flex: 1;
        justify-content: center;
        display: flex;
        border: 0;
    }

    .sort-container {
        display: flex;
    }

    .search-container {
        display: block;
        justify-content: space-between;
        border-bottom: 1px solid #edf3f5;
    }
    .left-top-container {
        flex: 1;
    }
    .right-top-container {
        padding-left: 5px;
    }
    .top-controller {
        background: #fff;
        color: #000;
        height: 40px;
        padding: 0 5px;
        align-items: center;
        font-size: 14px;
    }
    .top-controller .page-title {
        font-size: 13px;
        padding-right: 10px;
        line-height: 14px;
    }
    .counter {
        flex: 1;
        font-size: 14px;
        line-height: 1;
    }
    .user-options.user-toggle {
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        background: transparent;
        box-shadow: none;
        margin: 0;
    }
    .select-item {
        margin: 1px;
        padding: 0 5px;
        background: transparent;
        font-size: 13px;
    }
    .navbar-brand img {
        width: auto;
        flex-shrink: 0;
        height: 36px;
    }
    .logo-text {
        line-height: 14px;
    }
    .menu-toggle {
        display: block;
    }
    .menu-list {
        position: fixed;
        box-shadow: 1px 0 4px #0000002e;
        display: none;
        background: #2b4d59;
        background-image: linear-gradient(134deg, #009da5, #2b4d59);
        z-index: 10;
        min-width: 220px;
    }
    .account-type {
        text-align: left;
        font-size: 14px;
    }
    .user-menu-link,
    .notification-button {
        display: none;
    }
    .close-mobile-menu {
        position: absolute;
        right: -34px;
        width: 34px;
        background: #272727;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        color: #cecece;
    }
    .top-search-group {
        position: absolute;
        padding: 5px;
        width: 100%;
        left: 0;
        background: #eaeaea;
        display: none;
        justify-content: center;
    }
    .filters-container {
        display: none;
        position: absolute;
        background: #eaeaea;
        margin: 0;
        width: 100%;
        height: unset;
        left: 0;
    }
    .content-wrapper {
        display: block;
    }
    .search-mobile-toggle {
        display: flex;
    }
    .search-field:hover .top-search-group {
        display: flex;
    }
    .mobile-filter-toggle {
        display: flex;
    }
    .top-filters:hover .filters-container {
        display: flex;
    }
    .filters {
        clear: both;
    }
    .admin-content {
        display: unset;
    }
    .right-content {
        width: calc(100% - 10px);
        margin: 5px;
        clear: both;
    }
    .left-menu {
        display: none;
    }
    .table-row {
        padding: 0 10px;
        line-height: 50px;
    }

    .settings-menu {
        bottom: unset;
        top: 40px;
        right: 15px;
        left: unset;
    }

    ul.settings li {
        height: 60px;
        line-height: 60px;
    }
    ul.settings {
        display: block;
        width: 60px;
        flex-shrink: 0;
        margin: 0;
    }

    .table-row:hover {
        background: #fff;
    }

    ul.pagination {
        width: 100%;
        padding: 0;
        margin: 5px auto;
        justify-content: center;
        overflow-y: auto;
    }

    .card-header {
        border-bottom: 1px solid #f4f7f9;
    }

    .no-account {
        top: 25px;
        width: 100%;
        text-align: center;
        right: 0;
    }
    li.page-item {
        padding: 0 3px;
    }
    .categories-section {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .hide-md {
        display: none;
    }
    .mobile-pigeon-button {
        display: block;
        flex-shrink: 0;
    }
    .table-row {
        display: block;
        min-height: 40px;
    }

    /*.pigeon-actions,.pigeon-pedigree,.pigeon-id, .pigeon-serial,.pigeon-name, .added{*/
    /*float:left;*/
    /*}*/

    .small-name {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .table-data {
        flex: 0;
    }

    .table-data.pigeon-serial {
        line-height: 1;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .table-data.added {
        display: none;
    }

    .table-data.pigeon-pedigree {
        display: none;
    }
    .table-data.pigeon-name {
        display: none;
    }
    .table-header {
        display: none;
    }

    .pigeon-data {
        width: 100%;
    }

    .pigeon-form-content {
        flex-direction: column;
    }
    .pigeon-id {
        clear: left;
    }
    .top-button-text {
        display: none;
    }
    .table-data.pigeon-id {
        display: none;
    }

    .table-data.pigeon-pedigree {
        padding: 5px 10px;
        background: #f7f9fb;
        width: unset;
        border-radius: 4px;
        border: 1px solid #a6bace17;
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/* ==========TILEWIND CUSTOM========== */
.border {
    border: 1px solid rgba(204, 204, 204, 0.2);
}
.w-full {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.flex {
    display: flex;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.items-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.fw600 {
    font-weight: 600;
}

.bg-white {
    background: #fff;
}

.mb10 {
    margin-bottom: 10px;
}
.mb5 {
    margin-bottom: 5px;
}
.mt20 {
    margin-top: 10px;
}
.mt15 {
    margin-top: 10px;
}
.mt10 {
    margin-top: 10px;
}
.mt5 {
    margin-top: 5px;
}

.mx5 {
    margin-left: 5px;
    margin-right: 5px;
}
.mx10 {
    margin-left: 10px;
    margin-right: 10px;
}
.mx15 {
    margin-left: 15px;
    margin-right: 15px;
}
.mx20 {
    margin-left: 20px;
    margin-right: 20px;
}
.mx25 {
    margin-left: 25px;
    margin-right: 25px;
}

.mb20 {
    margin-bottom: 20px;
}
/* paddings */
.p0 {
    padding: 0;
}
.p5 {
    padding: 5px;
}
.p10 {
    padding: 10px;
}
.p15 {
    padding: 15px;
}
.px10 {
    padding-left: 10px;
    padding-right: 10px;
}

/* fontsSizes */
.fs14 {
    font-size: 14px;
}

.opacity50 {
    opacity: 0.5;
}
.opacity70 {
    opacity: 0.7;
}

.shadow {
    box-shadow: 0 1px 10px #0002;
}

.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    width: 100%;
}
.empty .text {
    margin-bottom: 15px;
}

/* ADMIN CATEGORIES */
.category-item {
    background: #00000010;
}

.category-item .actions {
    display: flex;
    margin-left: 1em;
    gap: 5px;
    background: #fff;
    border-radius: 10px;
    padding: 0 10px;
}

.category-item .actions a,
.category-item .actions form,
.category-item .actions button {
    background: transparent;
    border: 0;
    text-align: center;
    flex:1;
    color:#000;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

.category-settings {
    display: flex;
    justify-content: flex-end;
    background: #f4f9fb;
    padding: 5px 3px;
}
.category-name {
    width: 100%;
    display: flex;
}
.parent-category {
    display: flex;
    padding: 5px;
    flex-wrap: wrap;
}
.cateogory-settings-container {
    width: 100%;
    display: none;
}



@media only screen and (max-width: 450px) {
    .xs-block {
        display: block;
    }

    .xs-w-full {
        width: 100%;
    }

    .pigeon-transfer{
        flex-direction: column;
    }
}

#root{
    flex:1;
}



.invalid-feedback {
    color: #b00000;
    font-size: 14px;
    margin-bottom: 1em;
}
.form-control.is-invalid{
    border:1px solid #b00000;
}
label.is-invalid{
    color: #b00000;
    opacity: 1 !important;
}