 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root 
{
    --primary-color: #1D86C4;
    --color1: #212529;
    --bg-color1: #3D3E3E;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* top bar */
.top_bar
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  
}

.top_bar_in
{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo 
{
    width: 80px;
}
.top_menu 
{
    margin: 0;
    padding: 0;
    list-style: none;
}
.top_menu li 
{
    display: inline-block;
    margin: 0 20px;
}
.top_menu li a
{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color1) !important;
    text-decoration: none !important;
}

.top_menu.v2 li a
{
    color: white !important;
}

.top_menu li a:hover,
.top_menu li a.active
{
    color: var(--primary-color) !important;
}

.open_menu
{
    display: none;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 22px;
    padding: 2px 10px;
    border-radius: 5px;
}

.open_menu i 
{
    color: white;
}

.mobile_menu
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: end;
}

.mobile_menu.active
{
    display: flex;
}

.mobile_menu_in
{
    background-color: var(--primary-color);
    width: 250px;
    padding: 10px 15px;
    overflow-y: auto;
    position: relative;
}

.close_menu_btn
{
    float: right;
    color: white;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.close_menu_btn i 
{
    font-size: 30px;
    color: white;
}

.mobile_menu_in ul 
{
    margin: 0;
    padding: 0;
    padding-top: 60px;
    list-style: none;
}

.mobile_menu_in ul li 
{
    display: block;
}

.mobile_menu_in ul li a 
{
    display: block;
    padding: 14px 0;
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: uppercase;
    border-bottom: 1px solid white;
} 


@media(max-width : 991px)
{
    .top_menu,
    .empty_space
    {
        display: none;
    }
    .open_menu
    {
        display: block;
    }
}

/* hero */
.hero
{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    position: relative;
    background-image: linear-gradient(-45deg, var(--primary-color) 45%, white 45%);
}

.hero_in
{
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero_left h2 
{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero_left h1 
{
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.hero_left p 
{
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.hero_btm
{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.hero_btm a 
{
    background-color: var(--primary-color);
    color: white !important;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 26px;
    min-width: 150px;
    text-align: center;
    text-decoration: none !important;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.hero_btm a::before
{
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    background: var(--bg-color1);
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.2s linear; 
}

.hero_btm a:hover::before
{
    width: 100%;
}


.hero_right img 
{
    width: 100%;
  
}

@media(max-width : 767px)
{
    .hero {
        background-image: linear-gradient(340deg, var(--primary-color) 30%, white 30%);
    }
    .hero_in 
    {
        grid-template-columns: 100%;
        padding: 20% 0 0 0;
    }
    .hero_left h1 
    {
        font-size: 36px;
    }

    .hero_left p {
        font-size: 15px;
    }

    .hero_btm
    {
        gap: 10px;
    }
    .hero_btm a {
        font-size: 16px;
        padding: 12px 24px;
        min-width: 130px;
    }
}

@media(min-width : 768px) and (max-width : 991px)
{
    .hero {
        background-image: linear-gradient(-45deg, var(--primary-color) 40%, white 40%);
    }
    .hero_in 
    {
        padding-top: 12%;
        grid-template-columns: 50% 50%;
    }

    .hero_left h1 {
        font-size: 40px;
        margin: 20px 0;
    }

    .hero_btm {
        gap: 10px;
    }
    .hero_btm a {
        font-size: 16px;
        padding: 12px 22px;
        min-width: 130px;
    }

}

@media(min-width : 992px) and (max-width : 1199px)
{
    .hero_in {
        padding-top: 12%;
    }
    .hero_left h1 {
        font-size: 40px;
        margin: 15px 0;
    }
    .hero_btm a {
        font-size: 16px;
        padding: 12px 24px;
        min-width: 120px;
    }
    .hero_btm {
        gap: 10px;
    }

}


/* sign section */
.sign_wrapper
{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

@media(max-width : 767px)
{
    .sign_wrapper
    {
        min-height: auto;
    }
}

.sign_section
{
    padding: 100px 0 50px 0;
    display: flex;
    flex: 1;
    justify-content: center; 
    align-items: center; 
}

.sign_section_in
{
    max-width: 700px;
    width: 100%;
    margin: auto;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 20px;
    border-radius: 20px;
}

.sign_section_in > h1 
{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.sign_inp_era label
{
    font-weight: 500;
    font-size: 16px;
}

.sign_inp_era input
{
   height: 50px;
}


.sign_btn
{
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: block;
    width: 100%;
    cursor: pointer;
    height: 50px;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
    text-transform: uppercase;
}

.sign_rules a 
{
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.sign_rules a:hover 
{
    text-decoration: underline !important;
}

/* footer */
.footer_top
{
    padding: 40px 0;
    background-color: #3D3E3E;
}

.footer_item,
.footer_social,
.footer_app
{
    margin: 10px 0;
}

.footer_social
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_social ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_social ul li
{
    display: inline-block;
    margin: 0 10px;
}

.footer_social ul li a 
{
    display: inline-block;
    width: 40px; 
    height: 40px;
    text-align: center; 
    line-height: 40px; 
}

.footer_social ul li a i
{   
    display: inline-block;
    color: white !important;
    font-size: 20px;
    transition-duration: 0.2s; 
}

.footer_social ul li a i:hover
{
    color: var(--primary-color) !important;
}

.footer_app
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_app a img 
{
    border: 1px solid white;
    border-radius: 5px;
    max-width: 120px;
    width: 100%;
}

.footer_btm
{
    padding: 20px 0;
    background-color: #383939;
}

.footer_btm p 
{
    color: white;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.footer_privacy 
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_privacy a 
{
    font-size: 14px;
    font-weight: 400;
    color: white !important;
    text-decoration: none !important;
    transition-duration: 0.2s;
}
.footer_privacy a:hover 
{
    color: var(--primary-color) !important;
}

@media(max-width : 767px)
{
    .footer_top {
        padding: 20px 0;
    }
}

/* post section */
.post_section
{
   min-height: 100vh;
   position: relative;
   z-index: 2;
}

.bg_video
{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.video_shade
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.post_sec_wrapper
{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px 0;
}

.post_sec_in
{
    max-width: 600px;
    width: 100%;
}

.post_sec_in h1 
{
    color: white;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.tab_combine
{
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.1);
    background-color: #fff;
    overflow: hidden;
}
 
.tab_navigation
{
    background-color: #F7F7F6;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.tab_navigation .nav-tabs 
{
    border-bottom: 1px solid #dee2e6;
    position: relative;
    z-index: 2;
}

.tab_navigation .nav-tabs .nav-link
{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background-color: transparent;
    border: none;
    padding: 24px 10px;
    flex: 1;
}

.tab_navigation .nav-tabs .nav-link i 
{
    margin-right: 4px;
}
 

.tab_navigation .nav-tabs .nav-link:not(:last-child):hover, 
.tab_navigation .nav-tabs .nav-link:not(:last-child).active 
{
    border: none;
    color: #fff;
    font-weight: 600;
    background-color: var(--primary-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 0px;
}

.tab_navigation .nav-tabs .nav-link:hover i,
.tab_navigation .nav-tabs .nav-link.active i
{
    color: #fff;
}


.tab_navigation .nav-tabs .nav-link:is(:last-child):hover, 
.tab_navigation .nav-tabs .nav-link:is(:last-child).active 
{
    border: none;
    color: #fff;
    font-weight: 600;
    background-color: var(--primary-color);
    border-top-right-radius: 16px;
    border-top-left-radius: 0px;
}


.tab-content
{
    padding: 20px;
}

.post_inp_era label
{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.post_inp_era select,
.post_inp_era input
{
    height: 50px;
}

.post_inp_era select
{
    cursor: pointer;
}


@media(max-width : 575px)
{
    .post_sec_in h1 
    {
        font-size: 30px;
    }
    .post_sec_in p {
        font-size: 14px;
    }
    .tab_navigation .nav-tabs .nav-link {
        font-size: 15px;
    }
}

@media(min-width : 576px) and (max-width : 767px)
{
    .post_sec_in h1 
    {
        font-size: 35px;
    }
}


/* search */

.post_section.v2
{
    min-height: 65vh;
}

.post_sec_wrapper.v2
{
    min-height: 65vh;
    padding: 100px 0 20px 0;
}

.post_inp_era .form-check
{
    display: flex;
    align-items: center;
    gap: 6px;
}

.post_inp_era .form-check label
{
    text-transform: capitalize;
    cursor: pointer;
    margin: 0;
}

.post_inp_era .form-check input
{
    width: 22px;
    height: 22px;
    margin-top: 0px;
    margin-bottom:  0px;
}

/* post list */
.post_list
{
    padding: 40px 0;
    background-color: #F3F4F6;
}

.post_list h1 
{
    font-size: 20px;
    font-weight: 500;
}

.post_list_in
{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 20px 20px;
}

.post_item
{
    height: 100%;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.post_item_top
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.post_item_top h4 
{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post_item_top h4 i 
{
    font-size: 25px;
    color: var(--primary-color);
}

.chat_btn 
{
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none !important;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
}

.post_item_mid
{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.post_item_mid p 
{
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.more_btn
{
    background-color: #2e4053;
    color: white !important;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.more_btn i
{
    transition: all 0.2s linear;
}

.more_btn i.rotate 
{
    transition: all 0.2s linear;
    transform: rotate(180deg);
}

.post_item_desc
{
    border-top: 1px dashed #ccc;
    padding: 15px 0;
    display: none;
}

.post_item_desc p 
{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.post_item_btm
{
    background-color: #F3F4F6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.post_item_btm_content
{
    display: grid;
    grid-template-columns: 25px auto;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dashed #ccc;
    padding: 20px 30px;
}

.post_item_btm_content:last-child
{
    border-bottom: none;
}

.post_item_btm_content i 
{
    font-size: 25px;
}

.post_item_btm_content p 
{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

@media(max-width : 575px)
{
    .post_list_in {
        grid-template-columns: repeat(1, 1fr);
    }

    .post_item_top h4 {
        font-size: 16px;
    }

    .post_item_btm_content {
        padding: 18px 25px;
    }

    .post_item_btm_content i {
        font-size: 22px;
    }
    .post_item_btm_content p {
        font-size: 15px;
    }
}

@media(min-width : 576px) and (max-width : 767px)
{
    .post_list_in {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    .post_item_top h4 {
        font-size: 16px;
    }

    .post_item_btm_content {
        padding: 18px 25px;
    }

    .post_item_btm_content i {
        font-size: 22px;
    }
    .post_item_btm_content p {
        font-size: 15px;
    }
}

@media(min-width : 768px) and (max-width : 1023px)
{
    .post_list_in {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}


/* verification era */
.verification_era
{
    text-align: center;
}
.verification_era h2 
{
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.verification_era svg 
{
    margin: 10px auto;
    max-width: 400px;
}

/* account */
.account 
{
    padding: 120px 0 50px 0;
    background-size: cover;
    background-position: center;
}

.account_top
{
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.account_top > h2
{
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.chat_left,.chat_right
{
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.chat_top
{
  padding: 20px 30px 15px 30px;
  border-bottom: 1px solid #e4e5e7;
  box-shadow: 0 1.2px 1.92251px rgba(0,0,0,.02), 0 2px 3.68135px rgba(0,0,0,.04), 0 1px 5px rgba(0,0,0,.05);
  position: relative;
}


.cls_chat_small
{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
  font-weight: 500;
  background-color: red;
  padding: 4px 4px;
  border-radius: 4px;
  color: white !important;
  text-decoration: none !important;
  display: none;
}


.chat_top h4 
{
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat_top p 
{
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #666;;
}
.chat_mid
{
  position: relative;
  padding: 25px 30px 0px 30px;
  max-height: 500px;
  overflow: auto;
  scroll-behavior: smooth;
}

.chat_from
{
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.chat_from:last-child
{
  margin-bottom: 0px;
}


.chat_from_left h1 
{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}

.chat_from_right > h5 
{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.chat_from_right > h5 > span 
{
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}


.chat_box 
{
  margin-top: 12px;
}

.chat_box > p
{
  font-size: 14px;
  font-weight: 400;
  color: #666;
  max-width: 500px;
}
.chat_bottom
{
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 90% auto;
  gap: 15px;
  align-items: center;
}
.chat_bottom textarea 
{
  border: 1px solid #e4e5e7;
  border-radius: 15px;
  padding: 15px 20px;
  resize: vertical;
  max-height: 120px;
  box-shadow: none;
  outline: none;
}

.message_send_btn
{
  background-color: var(--primary-color);
  color: #fff;
  font-size:16px;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: none;
}


.chat_right_top
{
  padding: 20px 25px 15px 25px;
  border-bottom: 1px solid #e4e5e7;
}

.chat_profile_search
{
  display: none;
  grid-template-columns: 80% auto;
  align-items: center;
  gap: 10px;
}

.chat_profile_search.active 
{
  display: grid;
}

.chat_profile_search input 
{
  height: 45px;
  width: 100%;
  border: 1px solid #e5e5e5;
  padding:5px 12px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
}

.chat_profile_search button
{
  height: 45px;
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.chat_right_top_in
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.chat_right_top_in.hide
{
  display: none;
}


.chat_right_top_in h2 
{
  font-size: 20px;
  margin: 0;
  font-weight: 600
}
.chat_search_btn i
{
  font-size: 25px;
  color: var(--primary-color) !important;
}


.chat_right_mid
{
  padding: 15px 25px;
  max-height: 600px;
  overflow: auto;
}

.all_chat_profile
{
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  background-color: #99999914;
  border-radius: 10px;
  padding: 16px 14px;
  cursor: pointer;
}
.all_chat_profile:last-child 
{
  margin-bottom: 0px;
}

.all_chat_profile_left h1 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    background-color: #E67E22;
    color: white;
}

.all_chat_profile_right h4 
{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.all_chat_profile_right p 
{
  font-size: 15px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #666
}


@media(max-width: 767px)
{
 
  .account_in > .row 
  {
    flex-direction: column-reverse;
  }
 
  .chat_left
  {
    margin-bottom: 20px;
  }
  
  
  .chat_left.active
  {
    position: fixed;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    z-index: 2;
    top: 90px;
    height: fit-content;
    display: block;
  }
  .chat_right
  {
    width: 98%;
    margin: auto;
  }
  .chat_top p {
    display: block; 
  }
  .chat_top {
    padding: 15px 20px 12px 20px;
  }
  .chat_top h4 {
    font-size: 18px;
  }
  .chat_mid {
    padding: 25px 20px 0 20px;
  }
  .chat_box > p {
    font-size: 13px;
  }
  .chat_bottom {
    padding: 10px 20px;
    grid-template-columns: 75% auto;
    gap: 10px;
  }
 
  .chat_bottom textarea
  {
    font-size: 14px;
  }
  .cls_chat_small
  {
    display: block;
  }
  
  .chat_profile_search {
    grid-template-columns: 70% auto;
  }
  .chat_profile_search button {
    font-size: 14px;
  }
  .chat_right_top_in h2 {
    font-size: 18px;
  }
  .chat_right_mid {
    padding: 15px 16px;
  }
  .all_chat_profile_right h4 {
    font-size: 15px;
  }
  .all_chat_profile_right p {
    font-size: 13px;
  }
}


@media(min-width: 768px) and (max-width: 1199px)
{

  .chat_box > p {
    font-size: 13px;
  }
  
  .all_chat_profile_right h4 {
    font-size: 15px;
  }
  .all_chat_profile_right p {
    font-size: 13px;
  }
  .chat_bottom {
    grid-template-columns: 75% auto;
  }
  .all_chat_profile {
    padding: 12px 12px;
  }
  .chat_profile_search button {
    font-size: 14px;
  }
  .chat_profile_search {
    grid-template-columns: 70% auto;
  }
}

@media(min-width: 1200px) and (max-width: 1510px)
{
  .chat_bottom {
    grid-template-columns: 80% auto;
  } 
  .chat_right_top {
    padding: 20px 20px 15px 20px;
  }
  .chat_right_mid {
    padding: 15px 20px;
  }
  .all_chat_profile_right p {
    font-size: 13px;
  }
  .chat_profile_search {
    grid-template-columns: 70% auto;
  }
}


/* home notification */
.home_notification
{
    position: fixed;
    right: 20px;
    top: 70%;
    z-index: 99;
}

@media(max-width : 767px)
{
    .home_notification
    {
        right: 10px;
    }
}

.home_notification a
{
  background-color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%; 
  margin: 20px 0;
}

.home_notification a.v2 
{
    background-color: white;
    color: var(--primary-color);
}

.home_notification a i 
{
    font-size: 16px;
    color: white;
}

.home_notification a.v2 i 
{
    font-size: 16px;
    color: var(--primary-color);
}

.home_notification a span 
{
  position: absolute;
  top: 6px;
  right: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  background-color: white;
  border: 1px solid var(--primary-color);
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* rules */
.rules
{
    background-color: #f6f6f6;
    padding-top: 140px;
    padding-bottom: 30px;
}

.rules_in > h1 
{
    font-size: 30px;
    font-weight: 600;
    margin: 5px 0;
    text-align: center;
}

.rules_in > p 
{
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 40px 0;
    text-align: center;
}

.rules_item
{
    margin-bottom: 30px;
}

.rules_item:last-child
{
    margin-bottom: 0;
}

.rules_item h2 
{
    display: flex;
    align-items: start;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.rules_item p 
{
    display: grid;
    grid-template-columns: minmax(10px, 25px) 1fr;
    align-items: start;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    padding-left: 18px;
    margin: 15px 0;
}

.rules_item p span 
{
    display: block;
}

@media(max-width : 575px)
{
    .rules
    {
        padding-top: 100px;
    }
    .rules_in > h1 {
        font-size: 22px;
    }
    .rules_in > p {
        font-size: 15px;
    }
    .rules_item p {
        font-size: 15px;
    }
}

@media(min-width : 576px) and (max-width : 767px)
{
    .rules
    {
        padding-top: 110px;
    }
    .rules_in > h1 {
        font-size: 25px;
    }
}

/* profile_info */
.profile_info
{
    margin: 10px 0;
}
.profile_info h2 
{
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 600;
}
.profile_info_item input
{
    padding-top: 15px;
    padding-bottom: 15px;
}

.profile_info_small_img
{
    margin-top: 10px;
    height: 100px;
    width: 100px;
    object-fit: contain;
}

/* Swal */
.swal2-actions
{
    gap: 10px !important;
}

