/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

body
{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin: 0;
    background-color: #222222;
    padding-top:120px;
    display:flex;
    flex-direction: column;
    padding-bottom:100px;
}

h1{
    font-size: 24px;
    font-weight: 700;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}
h2{
    font-size: 20px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}
h3{
    font-size: 18px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}
h4{
    font-size: 16px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}
h5{
    font-size: 14px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}
h6{
    font-size: 12px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}

p{
    font-size: 12px;
    font-weight: 400;
    display:inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}

a:link{
    color: inherit;
    text-decoration: none;
}
a:visited{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: inherit;
    text-decoration: none;
}


/* HEADER */
#top-bar
{
    width: 100%;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
    background-color: #000000;
    position: fixed;
    top: 0px;
    z-index: 90;
}

#top-bar-left
{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#top-bar-right
{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#menu
{
    position: fixed;
    top: 40px;
    width: 100%;
    height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
    background-color: #111111;
    z-index: 90;
}

#menu-left
{
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#menu-right
{
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.menu-right-box
{
    width: 100px;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    background-color: #191919;
    color:white;
}

.menu-right-box:hover{
    background: #982efc;
}

.menu-right-next:hover{
    background: #982efc;
}


.menu-right-next
{
    width: 100px;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    background-color: #191919;
    margin-right:5px;
    color:white;
}

.menu-right-box-top
{
    width: 100%;
    height: 70%;
    font-size: 35px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 5px;
    color: white;
}

.header-counter{
    height: 20px;
    width: 20px;
    margin-top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    background-color: red;
    color: white;
    border-radius: 20px;

}

.menu-right-box-bottom
{
    width: 100%;
    height: 30%;
    font-size: 10px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top:5px;
    color: white;
}

.menu-active{
    background-color: #191919;
    width: 100px;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-right:5px;
    color:white;
    border-bottom: 5px solid #982efc;
}

.menu-active:hover{
    background-color: #982efc;
    width: 100px;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-right:5px;
    color:white;
    border-bottom: 5px solid #982efc;
}


.icon
{
    font-size: 50px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.alert-success{
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #04AA6D;
    color: white;
    font-size:16px;
    padding:20px;
    margin:20px;
    animation-duration: 7s;
    animation-name: alert-intro;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 80;
}

.alert-error{
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #f44336;
    color: white;
    font-size:16px;
    padding:20px;
    margin:20px;
    animation-duration: 7s;
    animation-name: alert-intro;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 80;
}

@keyframes alert-intro{

    0% {
        transform: translate(0px, 100px);
        opacity: 0;

    }

    10% {

        transform: translate(0px, 0px);
        opacity: 1;
    }
    90% {

        transform: translate(0px, 0px);
        opacity: 1;
    }
    99% {

        transform: translate(0px, -50px);
        opacity: 0;
    }
    100% {

        transform: translate(5000px, 5000px);
        opacity: 0;
    }

}

@keyframes mufasa{

    0% {
        transform: translate(0px, 0px);
        opacity: 0;

    }

    10% {
        transform: translate(-10vw, 0px);
        opacity: 1;

    }

    90% {
        transform: translate(-90vw, 0px);
        opacity: 1;

    }

    99% {

        transform: translate(-100vw, -50px);
        opacity: 0;
    }
    100% {

        transform: translate(5000px, 5000px);
        opacity: 0;
    }

}

@keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.4;
    }
  }
  
  .blinking {
    animation: blink 1s infinite;
  }

/* BODY STRONY */

.body-content{
    padding: 20px;
    display:flex;
    flex-direction: column;
}

.page-title-column{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top:5px;
    margin-bottom:20px;

}

.box-title{
    font-size: 16px;
    font-weight: 600;
    display: inline;
    color: white;
    margin-top: 5px;
    margin-bottom: 15px;
}

.box100{
    width: 100%;
    display:flex;
    flex-direction: column;
    padding:20px;
    background-color: #383838;
    margin-bottom: 20px;
    border-radius: 5px;
    margin-right:20px;
}

.box75{
    width: 75%;
    display:flex;
    flex-direction: column;
    padding:20px;
    background-color: #383838;
    margin-bottom: 20px;
    margin-right:20px;
    border-radius: 5px;
}

.box50{
    width: 50%;
    display:flex;
    flex-direction: column;
    padding:20px;
    background-color: #383838;
    margin-bottom: 20px;
    margin-right:20px;
    border-radius: 5px;
}

.box25{
    width: 25%;
    display:flex;
    flex-direction: column;
    padding:20px;
    background-color: #383838;
    margin-bottom: 20px;
    margin-right:20px;
    border-radius: 5px;
}

.column100{
    display:flex;
    flex-direction: row;
    margin-right:-20px;
}




/* Kolumny - elementy układające treści w kolumny bez dodatkowego stylizowania, sluza do tworzenia siatki obiektow */
/* Kolumny X - typ ROW */
.column50x-left{
    display:flex;
    flex-direction:row;
    width: 50%;
    align-items:flex-start;
    justify-content: flex-start;
}

.column50x-center{
    display:flex;
    flex-direction:row;
    width: 50%;
    align-items:flex-start;
    justify-content: center;
}

.column50x-right{
    display:flex;
    flex-direction:row;
    width: 50%;
    align-items:flex-start;
    justify-content: flex-end;
}

.column25x-left{
    display:flex;
    flex-direction:row;
    width: 25%;
    align-items:flex-start;
    justify-content: flex-start;
}

.column25x-center{
    display:flex;
    flex-direction:row;
    width: 25%;
    align-items:flex-start;
    justify-content: center;
}

.column25x-right{
    display:flex;
    flex-direction:row;
    width: 25%;
    align-items:flex-start;
    justify-content: flex-end;
}

.column75x-left{
    display:flex;
    flex-direction:row;
    width: 75%;
    align-items:flex-start;
    justify-content: flex-start;
}

.column75x-center{
    display:flex;
    flex-direction:row;
    width: 75%;
    align-items:flex-start;
    justify-content: center;
}

.column75x-right{
    display:flex;
    flex-direction:row;
    width: 75%;
    align-items:flex-start;
    justify-content: flex-end;
}

.column100x-left{
    display:flex;
    flex-direction:row;
    width: 100%;
    align-items:flex-start;
    justify-content: flex-start;
}

.column100x-center{
    display:flex;
    flex-direction:row;
    width: 100%;
    align-items:flex-start;
    justify-content: center;
}

.column100x-right{
    display:flex;
    flex-direction:row;
    width: 100%;
    align-items:flex-start;
    justify-content: flex-end;
}

/* KOLUMNY Y - Typ column */

.column50y-left{
    display:flex;
    flex-direction:column;
    width: 50%;
    align-items:flex-start;
    justify-content: center;
}

.column50y-center{
    display:flex;
    flex-direction:column;
    width: 50%;
    align-items:center;
    justify-content: center;
}

.column50y-right{
    display:flex;
    flex-direction:column;
    width: 50%;
    align-items:flex-end;
    justify-content: center;
}

.column25y-left{
    display:flex;
    flex-direction:column;
    width: 25%;
    align-items:flex-start;
    justify-content: center;
}

.column25y-center{
    display:flex;
    flex-direction:column;
    width: 25%;
    align-items:center;
    justify-content: center;
}

.column25y-right{
    display:flex;
    flex-direction:column;
    width: 25%;
    align-items:flex-end;
    justify-content: center;
}

.column75y-left{
    display:flex;
    flex-direction:column;
    width: 75%;
    align-items:flex-start;
    justify-content: center;
}

.column75y-center{
    display:flex;
    flex-direction:column;
    width: 75%;
    align-items:center;
    justify-content: center;
}

.column75y-right{
    display:flex;
    flex-direction:column;
    width: 75%;
    align-items:flex-end;
    justify-content: center;
}

.column100y-left{
    display:flex;
    flex-direction:column;
    width: 100%;
    align-items:flex-start;
    justify-content: center;
}

.column100y-center{
    display:flex;
    flex-direction:column;
    width: 100%;
    align-items:center;
    justify-content: center;
}

.column100y-right{
    display:flex;
    flex-direction:column;
    width: 100%;
    align-items:flex-end;
    justify-content: center;
}


















.actionbar{
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top:5px;
    
}

.separator{
    display: flex;
    width:100%!important;
    height: 1px!important;
    background-color: #525252!important;
    margin-top:5px!important;
    margin-bottom:5px!important;
}

.titlebar{
    display:flex;
    flex-direction:row;
    width: 100%;
    padding-top:15px;
    padding-bottom:15px;
    padding-left:5px;
    padding-right:5px;
    font-weight: 700;
}

.titlebar:hover{
    background-color: #4d4d4d;
}


.listing-element{
    display:flex;
    flex-direction:row;
    padding:5px;
    align-items: center;
}

.listing-element:hover{
    background-color: #4d4d4d;
}






.item-onlist{
    color: rgb(255, 255, 255);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #982efc;
}


.order-pending{
    background-color: #c9c9c9;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.order-processing{
    background-color: #2bff00;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.order-completed{
    background-color: #982efc;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.order-cancelled{
    background-color: #ff1e1e;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}














.dropbtn {
    background-color: #982efc;
    color: white;
    font-size: 12px;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0px;
  }
  
  .dropdown {
    position: relative;
    display: flex;
  }
  
  .dropdown-content {
    margin-top:20px;
    display: none;
    position: absolute;
    background-color: #222222;
    color:white;
    min-width: 160px;
    z-index: 1;
    right: 0;
  }
  
  .dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: rgb(0, 0, 0);}
  
  .dropdown:hover .dropdown-content {display: flex;flex-direction:column;}
  
  .dropdown:hover .dropbtn {background-color: #982efc;}












.tabs-active{
    padding: 10px 20px 10px 20px;
    border-top: 1px solid #982efc;
    border-left: 1px solid #982efc;
    border-right: 1px solid #982efc;
    border-radius: 10px 10px 0px 0px;
    color:white;
    background-color: #982efc;

}

.tabs-inactive{
    padding: 10px 20px 10px 20px;
    padding: 10px 20px 10px 20px;
    border-top: 1px solid #982efc;
    border-left: 1px solid #982efc;
    border-right: 1px solid #982efc;
    border-radius: 10px 10px 0px 0px;
    color:white;
}











.offer-processing{
    background-color: #c9c9c9;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.offer-completed{
    background-color: #2bff00;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.offer-accepted{
    background-color: #982efc;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.offer-cancelled{
    background-color: #ff1e1e;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}












.invoice-pending{
    background-color: #ffc400;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.invoice-delayed{
    background-color: #ff1e1e;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}

.invoice-completed{
    background-color: #2bff00;
    color: #000000;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}
.invoice-cancelled{
    background-color: #c9c9c9;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
}









.project-new{
    background-color: #c9c9c9;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-meet{
    background-color: #fbff00;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-lost{
    background-color: #ff0000;
    color: rgb(255, 255, 255);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-waiting{
    background-color: #ff9100;
    color: #000000;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-priced{
    background-color: #ffee00;
    color: rgb(0, 0, 0);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-totake{
    background-color: #2bff00;
    color: #000000;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-realized{
    background-color: #b47de7;
    color: #ffffff;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-completed{
    background-color: #982efc;
    color: rgb(255, 255, 255);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}

.project-cancelled{
    background-color: #ff0000;
    color: rgb(255, 255, 255);
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}
.project-hold{
    background-color: #ffc400;
    color: #000000;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size:10px;
    text-transform: uppercase;
}







.profile-photo{
    max-width: 100%;
    height: auto;      
    border-radius: 100px;
}





.progress-bar{
    border-radius: 5px;
    width: 100%;
    background-color: #4d4d4d;
    border:1px solid #982efc;
    height: 20px;
    display:flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.progress-bar-fill{
    background-color: #982efc;
    height: 20px;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}








/* OLD */

.listing-header{
    display: flex;
    flex-direction:row;
    width: 100%;
    padding: 10px;
    font-weight: 800;
    margin-top: 3px;
}


.tab{
    display: flex;
    flex-direction:row;
    width: 100%;
    padding: 10px;
    font-weight: 800;
    margin-top: 3px;
    background-color: #636363;
    color: #ffffff;
    font-size:12px;
}

.tab:hover{
    display: flex;
    flex-direction:row;
    width: 100%;
    padding: 10px;
    font-weight: 800;
    margin-top: 3px;
    background-color: #000000;
    color: #ffffff;
    font-size:12px;
}

.tab-active{
    display: flex;
    flex-direction:row;
    width: 100%;
    padding: 10px;
    font-weight: 800;
    margin-top: 3px;
    background-color: #000000;
    color: #ffffff;
    font-size:12px;
}


/* FORMULARZE */

input, textarea, select {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    width:100%;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    margin-bottom:5px;
    min-height: 32px;
  }

input:active, textarea:active, select:active {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    width:100%;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    margin-bottom:5px;
    min-height: 32px;
  }
input:focus, textarea:focus, select:focus {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    width:100%;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    margin-bottom:5px;
    min-height: 32px;
    outline: none;
  }

button {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    background-color: #982efc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size:14px;
    font-weight: 700;
    cursor: pointer;
}

.button-inactive {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    background-color: #222222;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    border: 1px solid #982efc;
    font-size:14px;
    font-weight: 700;
    cursor: pointer;
}

.button-inactive-calendar {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    background-color: #383838;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    border: 1px solid #982efc;
    font-size:14px;
    font-weight: 700;
    cursor: pointer;
}

.button100 {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    background-color: #982efc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size:14px;
    font-weight: 700;
    cursor: pointer;
    width:100%;
}

.buttonicon {
    margin: 0;
    background-color: #982efc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size:14px;
    font-weight: 700;
    cursor: pointer;
    width: 30px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0px;
}


label {
    font-size:12px;
    font-weight:400;
    padding-top:2px;
    padding-bottom:2px;
  }