/* Nav */
.navbar-others {
    background-color: #444f55;
    padding: 20px 15px;
    width: 100%;
}

@media (max-width:867px) {
    .navbar-others {
        display: none !important;
    }
}

.navbar-others .content-navbar-others {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-others .content-navbar-others .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-others .content-navbar-others .logo img {
    width: 139px;
}

.navbar-others .content-navbar-others .links-and-search {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.navbar-others .content-navbar-others .links-and-search .search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.navbar-others .content-navbar-others .links-and-search .search .input-search {
    background-color: #444f55;
    color: #FFF;
    padding: 12px 50px 8px 5px;
    border: none;
    border-bottom: 1px solid #fff;
    display: block;
    outline: 0px;
    width: 288px;
    font-size: 16px;
    font-weight: 300 !important;
}

.navbar-others .content-navbar-others .links-and-search .search .input-search::placeholder {
    color: #FFF;
    font-size: 15px;
    font-weight: 200 !important;
}

.navbar-others .content-navbar-others .links-and-search .search .input-search:hover {
    border-bottom-color: #ff9600;
    box-shadow: inset 0 -1px 0 0 #ff9600;
}

.navbar-others .content-navbar-others .links-and-search .search .input-search:focus {
    border-bottom-color: #ff9600;
    box-shadow: inset 0 -1px 0 0 #ff9600;
}

.navbar-others .content-navbar-others .links-and-search .icon-search {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 5px;
}

.navbar-others .content-navbar-others .links-and-search .links-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-others .content-navbar-others .links-and-search .links-nav .link-nav {
    color: #FFF;
    font-size: 16px;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.navbar-others .content-navbar-others .links-and-search .links-nav .link-nav:hover {
    border-bottom: 2px solid #FFF !important;
}

.navbar-others .content-navbar-others .links-and-search .links-nav .link-nav img {
    margin-right: 5px;
}

.navbar-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: #444f55;
    padding: 20px 15px;
    width: 100%;
}


@media (max-width:867px) {
    .navbar-mobile {
        display: flex !important;
    }
}

.navbar-mobile .button-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.navbar-mobile .button-nav img {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
}

.navbar-mobile .button-nav .text {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
}

.navbar-mobile .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-mobile .logo img {
    width: 120px;
}
/* Nav */

/* Main */
.posting-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 15px;
}

.posting-section .content-posting-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.posting-section .content-posting-section .coul-post {
    width: 500px;
    max-width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.posting-section .content-posting-section .coul-post h1 {
    color: #444f55;
    font-size: 24px;
    margin-bottom: 4px;
}

.posting-section .content-posting-section .coul-post p {
    font-size: 18px;
    color: #444f55;
    margin-bottom: 20px;
    line-height: 1.5;
}

.posting-section .content-posting-section .coul-post .valid-coul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.posting-section .content-posting-section .coul-post .valid-coul i {
    font-size: 40px;
    color: green;
    margin: 0px auto;
}

.posting-section .content-posting-section .coul-post .explains-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.posting-section .content-posting-section .coul-post .explains-icons img {
    width: 236px;
    height: 38.9px;
}

.posting-section .content-posting-section .coul-post .coul-write {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.posting-section .content-posting-section .coul-post .coul-write label {
    color: #444f55;
    font-weight: bold;
    font-size: 15px;
}

.posting-section .content-posting-section .coul-post .coul-write .write-post {
    padding: 14px 24px;
    width: 100%;
    height: 56px;
    border: 2px solid #858d90;
    color: #444f55;
    transition: all .2s ease-in-out;
    outline: 0px;
    border-radius: 0px;
    font-size: 16px;
    margin: 10px 0px; 
}

.posting-section .content-posting-section .coul-post .coul-write .write-post:hover {
    border-color: #444f55;
    box-shadow: 0 0 0 1px #444f55;
    outline: 0;
}

.posting-section .content-posting-section .coul-post .coul-write .write-post:focus {
    border-color: #444f55;
    box-shadow: 0 0 0 1px #444f55, 0 0 0 3px #fff, 0 0 0 6px #ff9600;
    outline: 0;
}

.posting-section .content-posting-section .coul-post .coul-write .error-write {
    background-color: #fedfe1;
    font-size: 13px;
    color: #444f55;
    padding: 5px 10px;
    width: 100%;
    display: none;
}

.posting-section .content-posting-section .coul-post .coul-click {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.posting-section .content-posting-section .coul-post .coul-click .click {
    padding: 14px 24px;
    width: 100%;
    height: 56px;
    color: #FFF;
    background-color: #444f55;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-bottom: 4px solid transparent;
    outline: 0px;
    border-radius: 0px;
    transition: all .1s ease-in-out;
}

.posting-section .content-posting-section .coul-post .coul-click .click:hover {
    background-color: #231f20;
    border-bottom: 4px solid #ff9600 !important;
}

.posting-section .content-posting-section .coul-post .p {
    margin-bottom: 0px !important;
    margin-top: 30px;
    width: 100%;
    font-size: 16px !important;
}

.posting-section .content-posting-section .coul-post .p .link-post {
    border-bottom: 1px solid #444f55;
    font-weight: bold;
}
/* Main */

/* Footer */
.footer {
    background-color: #444f55;
    width: 100%;
    padding: 56px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .content-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

@media (max-width:930px) {
    .footer .content-footer {
        flex-direction: column;
    }
}

.footer .content-footer .box-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% / 4);
}

@media (max-width:930px)  {
    .footer .content-footer .box-footer {
        width: 100% !important;
        margin-bottom: 25px;
    }
}

.footer .content-footer .box-footer h4 {
    color: #FFF;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer .content-footer .box-footer .link-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #FFF;
    font-size: 17px;
    margin-bottom: 15px;
    transition: 0.3s;
    border-bottom: 1px solid #FFF;
}

/* Footer */


/* Start Message User */
.message-user {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #0006;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 99999999999999;
}

.message-user .content-message-user {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 600px;
    max-width: 90%;
}

.message-user .content-message-user .header-messsage-user {
    background-color: #444f55;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.message-user .content-message-user .header-messsage-user img {
    width: 111px;
}

.message-user .content-message-user .header-messsage-user  .close-message-header {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #444f55;
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0px;
    position: absolute;
    right: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.message-user .content-message-user .header-messsage-user  .close-message-header i {
    font-size: 22px;
}

.message-user .content-message-user .text-message-user {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.message-user .content-message-user .text-message-user .alert-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #444f55;
    color: #FFF;
    margin: 0px auto;
    margin-bottom: 10px;
}

.message-user .content-message-user .text-message-user i {
    font-size: 25px;
    color: #FFF;
}


.message-user .content-message-user .text-message-user h2 {
    color: #444f55;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.message-user .content-message-user .text-message-user p {
    font-size: 14px;
    background-color: #F4F7FD;
    color: #000;
    line-height: 1.7;
    padding: 10px;
    font-weight: 300;
    margin-bottom: 15px;
}

.message-user .content-message-user .text-message-user .close-message-user {
    background-color: #444f55;
    color: #FFF;
    border-radius: 5px;
    cursor: pointer;
    outline: 0px;
    border: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
}

/* End Message User */

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0px;
}

.spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 7px solid;
    border-color: #dbdcef;
    border-right-color: #444f55;
    border-bottom-color: #444f55;
    border-top-color: #444f55;
    animation: spinner-d3wgkg 1s infinite linear;
 }
 
 @keyframes spinner-d3wgkg {
    to {
       transform: rotate(1turn);
    }
 }