/*

Builder
Theme: Higgs

*/

/* Basic */

.pb-clear {
    clear: both;
}

/* Typo */

.pb-txt-ellips {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pb-txt-center {
    text-align: center;
}

.pb-txt-left {
    text-align: left;
}

.pb-txt-right {
    text-align: right;
}

.pb-txt-justy {
    text-align: justify;
}

.pb-txt-upp {
    text-transform: uppercase;
}

.pb-txt-cap {
    text-transform: capitalize;
}

.pb-txt-low {
    text-transform: lowercase;
}

.pb-letter-1 {
    letter-spacing: 1px;
}

.pb-letter-2 {
    letter-spacing: 2px;
}

.pb-letter-3 {
    letter-spacing: 3px;
}

.pb-letter-4 {
    letter-spacing: 4px;
}

.pb-letter-5 {
    letter-spacing: 5px;
}

.pb-letter-6 {
    letter-spacing: 6px;
}

.pb-letter-7 {
    letter-spacing: 7px;
}

.pb-letter-8 {
    letter-spacing: 8px;
}

.pb-letter-9 {
    letter-spacing: 9px;
}

/* Display */

.pb-hide {
    visibility: hidden;
}

.pb-none {
    display: none;
}

.pb-block {
    display: block;
}

.pb-table {
    display: table;
    height: 100%;
    width: 100%;
}

.pb-cell {
    display: table-cell;
    vertical-align: middle;
}

.pb-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pb-center-top {
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.pb-center-bott {
    transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -webkit-transform: translateY(50%);
}

.pb-center {
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    top: 50%;
}

.pb-center-image img {
    margin: 0 auto;
}

.pb-inline {
    display: inline;
}

.pb-inline-b {
    display: inline-block;
}

.pb-float-l {
    float: left;
}

.pb-float-r {
    float: right;
}

.pb-float-n {
    float: none;
}

.pb-pos-abs {
    position: absolute;
}

.pb-pos-rel {
    position: relative;
}

.pb-pos-fix {
    position: fixed;
}

.pb-pos-stc {
    position: static;
}

.pb-over-h {
    overflow: hidden;
}

.pb-over-v {
    overflow: visible;
}

/* Positioning */

.pb-pos-top {
    top: 0;
}

.pb-pos-bott {
    bottom: 0;
}

.pb-pos-top-l {
    top: 0;
    left: 0;
}

.pb-pos-top-r {
    top: 0;
    right: 0;
}

.pb-pos-bott-l {
    bottom: 0;
    left: 0;
}

.pb-pos-bott-r {
    bottom: 0;
    right: 0;
}

/* Radius */

.pb-radius {
    border-radius: 100%;
}

/* Opacity */

.pb-opacity-1 {
    opacity: 0.1;
}

.pb-opacity-2 {
    opacity: 0.2;
}

.pb-opacity-3 {
    opacity: 0.3;
}

.pb-opacity-4 {
    opacity: 0.4;
}

.pb-opacity-5 {
    opacity: 0.5;
}

.pb-opacity-6 {
    opacity: 0.6;
}

.pb-opacity-7 {
    opacity: 0.7;
}

.pb-opacity-8 {
    opacity: 0.8;
}

.pb-opacity-9 {
    opacity: 0.9;
}

/* Image */

.pb-greyscale-100 {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.pb-greyscale-90 {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
}

.pb-greyscale-80 {
    -webkit-filter: grayscale(80%);
    filter: grayscale(80%);
}

.pb-greyscale-70 {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
}

.pb-greyscale-60 {
    -webkit-filter: grayscale(60%);
    filter: grayscale(60%);
}

.pb-greyscale-50 {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}

.pb-greyscale-40 {
    -webkit-filter: grayscale(40%);
    filter: grayscale(40%);
}

.pb-greyscale-30 {
    -webkit-filter: grayscale(30%);
    filter: grayscale(30%);
}

.pb-greyscale-20 {
    -webkit-filter: grayscale(20%);
    filter: grayscale(20%);
}

.pb-greyscale-10 {
    -webkit-filter: grayscale(10%);
    filter: grayscale(10%);
}

.pb-blur-5 {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.pb-blur-4 {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.pb-blur-3 {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.pb-blur-2 {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.pb-blur-1 {
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.pb-brightness-200 {
    -webkit-filter: brightness(200%);
    filter: brightness(200%);
}

.pb-brightness-150 {
    -webkit-filter: brightness(150%);
    filter: brightness(150%);
}

.pb-brightness-100 {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}

.pb-brightness-50 {
    -webkit-filter: brightness(50%);
    filter: brightness(50%);
}

.pb-contrast-200 {
    -webkit-filter: contrast(200%);
    filter: contrast(200%);
}

.pb-contrast-150 {
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
}

.pb-contrast-100 {
    -webkit-filter: contrast(100%);
    filter: contrast(100%);
}

.pb-contrast-50 {
    -webkit-filter: contrast(50%);
    filter: contrast(50%);
}

.pb-hue-rotate-90 {
    -webkit-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
}

.pb-hue-rotate-80 {
    -webkit-filter: hue-rotate(80deg);
    filter: hue-rotate(80deg);
}

.pb-hue-rotate-70 {
    -webkit-filter: hue-rotate(70deg);
    filter: hue-rotate(70deg);
}

.pb-hue-rotate-60 {
    -webkit-filter: hue-rotate(60deg);
    filter: hue-rotate(60deg);
}

.pb-hue-rotate-50 {
    -webkit-filter: hue-rotate(50deg);
    filter: hue-rotate(50deg);
}

.pb-hue-rotate-40 {
    -webkit-filter: hue-rotate(40deg);
    filter: hue-rotate(40deg);
}

.pb-hue-rotate-30 {
    -webkit-filter: hue-rotate(30deg);
    filter: hue-rotate(30deg);
}

.pb-hue-rotate-20 {
    -webkit-filter: hue-rotate(20deg);
    filter: hue-rotate(20deg);
}

.pb-hue-rotate-10 {
    -webkit-filter: hue-rotate(10deg);
    filter: hue-rotate(10deg);
}

.pb-invert-100 {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.pb-invert-90 {
    -webkit-filter: invert(90%);
    filter: invert(90%);
}

.pb-invert-80 {
    -webkit-filter: invert(80%);
    filter: invert(80%);
}

.pb-invert-70 {
    -webkit-filter: invert(70%);
    filter: invert(70%);
}

.pb-invert-60 {
    -webkit-filter: invert(60%);
    filter: invert(60%);
}

.pb-invert-50 {
    -webkit-filter: invert(50%);
    filter: invert(50%);
}

.pb-invert-40 {
    -webkit-filter: invert(40%);
    filter: invert(40%);
}

.pb-invert-30 {
    -webkit-filter: invert(30%);
    filter: invert(30%);
}

.pb-invert-20 {
    -webkit-filter: invert(20%);
    filter: invert(20%);
}

.pb-invert-10 {
    -webkit-filter: invert(10%);
    filter: invert(10%);
}

.pb-saturate-200 {
    -webkit-filter: saturate(200%);
    filter: saturate(200%);
}

.pb-saturate-150 {
    -webkit-filter: saturate(150%);
    filter: saturate(150%);
}

.pb-saturate-100 {
    -webkit-filter: saturate(100%);
    filter: saturate(100%);
}

.pb-saturate-50 {
    -webkit-filter: saturate(50%);
    filter: saturate(50%);
}

.pb-sepia-100 {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}

.pb-sepia-90 {
    -webkit-filter: sepia(90%);
    filter: sepia(90%);
}

.pb-sepia-80 {
    -webkit-filter: sepia(80%);
    filter: sepia(80%);
}

.pb-sepia-70 {
    -webkit-filter: sepia(70%);
    filter: sepia(70%);
}

.pb-sepia-60 {
    -webkit-filter: sepia(60%);
    filter: sepia(60%);
}

.pb-sepia-50 {
    -webkit-filter: sepia(50%);
    filter: sepia(50%);
}

.pb-sepia-40 {
    -webkit-filter: sepia(40%);
    filter: sepia(40%);
}

.pb-sepia-30 {
    -webkit-filter: sepia(30%);
    filter: sepia(30%);
}

.pb-sepia-20 {
    -webkit-filter: sepia(20%);
    filter: sepia(20%);
}

.pb-sepia-10 {
    -webkit-filter: sepia(10%);
    filter: sepia(10%);
}

/* Shadow */

.pb-shad-black-05 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

.pb-shad-black-10 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.pb-shad-black-15 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

.pb-shad-black-20 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.pb-shad-black-25 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
}

.pb-shad-black-30 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.pb-shad-black-35 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.35);
}

.pb-shad-black-40 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.pb-shad-black-45 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.45);
}

.pb-shad-black-50 {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.pb-shad-white-05 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.05);
}

.pb-shad-white-10 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.1);
}

.pb-shad-white-15 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.15);
}

.pb-shad-white-20 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.2);
}

.pb-shad-white-25 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.25);
}

.pb-shad-white-30 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.3);
}

.pb-shad-white-35 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.35);
}

.pb-shad-white-40 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.4);
}

.pb-shad-white-45 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.45);
}

.pb-shad-white-50 {
    box-shadow: 2px 2px 5px rgba(255,255,255,0.5);
}

/* Background */

.pb-bg-center {
    background-position: center center;
}

.pb-bg-top {
    background-position: top center;
}

.pb-bg-bottom {
    background-position: bottom center;
}

.pb-bg-cover {
    background-size: cover;
}

.pb-bg-contain {
    background-size: contain;
}

.pb-bg-attach-s {
    background-attachment: scroll;
}

.pb-bg-attach-f {
    background-attachment: fixed;
}

/* Spacing */

.pb-padd-t-15 {
    padding-top: 15px;
}

.pb-padd-t-30 {
    padding-top: 30px;
}

.pb-padd-t-45 {
    padding-top: 45px;
}

.pb-padd-t-60 {
    padding-top: 60px;
}

.pb-padd-t-75 {
    padding-top: 75px;
}

.pb-padd-t-90 {
    padding-top: 90px;
}

.pb-padd-t-120{
    padding-top: 120px;
}

.pb-padd-t-150 {
    padding-top: 150px;
}

.pb-padd-t-180 {
    padding-top: 180px;
}

.pb-padd-b-15 {
    padding-bottom: 15px;
}

.pb-padd-b-30 {
    padding-bottom: 30px;
}

.pb-padd-b-45 {
    padding-bottom: 45px;
}

.pb-padd-b-60 {
    padding-bottom: 60px;
}

.pb-padd-b-75 {
    padding-bottom: 75px;
}

.pb-padd-b-90 {
    padding-bottom: 90px;
}

.pb-padd-b-120{
    padding-bottom: 120px;
}

.pb-padd-b-150 {
    padding-bottom: 150px;
}

.pb-padd-b-180 {
    padding-bottom: 180px;
}

.pb-padd-r-15 {
    padding-right: 15px;
}

.pb-padd-r-30 {
    padding-right: 30px;
}

.pb-padd-r-45 {
    padding-right: 45px;
}

.pb-padd-r-60 {
    padding-right: 60px;
}

.pb-padd-r-75 {
    padding-right: 75px;
}

.pb-padd-r-90 {
    padding-right: 90px;
}

.pb-padd-r-120{
    padding-right: 120px;
}

.pb-padd-r-150 {
    padding-right: 150px;
}

.pb-padd-r-180 {
    padding-right: 180px;
}

.pb-padd-l-15 {
    padding-left: 15px;
}

.pb-padd-l-30 {
    padding-left: 30px;
}

.pb-padd-l-45 {
    padding-left: 45px;
}

.pb-padd-l-60 {
    padding-left: 60px;
}

.pb-padd-l-75 {
    padding-left: 75px;
}

.pb-padd-l-90 {
    padding-left: 90px;
}

.pb-padd-l-120 {
    padding-left: 120px;
}

.pb-padd-l-150 {
    padding-left: 150px;
}

.pb-padd-l-180 {
    padding-left: 180px;
}

.pb-padd-0 {
    padding: 0;
}

.pb-padd-15 {
    padding: 15px;
}

.pb-padd-30 {
    padding: 30px;
}

.pb-padd-45 {
    padding: 45px;
}

.pb-padd-60 {
    padding: 60px;
}

.pb-padd-75 {
    padding: 75px;
}

.pb-padd-90 {
    padding: 90px;
}

.pb-padd-120 {
    padding: 120px;
}

.pb-padd-150 {
    padding: 150px;
}

.pb-padd-180 {
    padding: 180px;
}

.pb-marg-t-15 {
    margin-top: 15px;
}

.pb-marg-t-30 {
    margin-top: 30px;
}

.pb-marg-t-45 {
    margin-top: 45px;
}

.pb-marg-t-60 {
    margin-top: 60px;
}

.pb-marg-t-75 {
    margin-top: 75px;
}

.pb-marg-t-90 {
    margin-top: 90px;
}

.pb-marg-t-120{
    margin-top: 120px;
}

.pb-marg-t-150 {
    margin-top: 150px;
}

.pb-marg-t-180 {
    margin-top: 180px;
}

.pb-marg-b-15 {
    margin-bottom: 15px;
}

.pb-marg-b-30 {
    margin-bottom: 30px;
}

.pb-marg-b-45 {
    margin-bottom: 45px;
}

.pb-marg-b-60 {
    margin-bottom: 60px;
}

.pb-marg-b-75 {
    margin-bottom: 75px;
}

.pb-marg-b-90 {
    margin-bottom: 90px;
}

.pb-marg-b-120{
    margin-bottom: 120px;
}

.pb-marg-b-150 {
    margin-bottom: 150px;
}

.pb-marg-b-180 {
    margin-bottom: 180px;
}

.pb-marg-r-15 {
    margin-right: 15px;
}

.pb-marg-r-30 {
    margin-right: 30px;
}

.pb-marg-r-45 {
    margin-right: 45px;
}

.pb-marg-r-60 {
    margin-right: 60px;
}

.pb-marg-r-75 {
    margin-right: 75px;
}

.pb-marg-r-90 {
    margin-right: 90px;
}

.pb-marg-r-120{
    margin-right: 120px;
}

.pb-marg-r-150 {
    margin-right: 150px;
}

.pb-marg-r-180 {
    margin-right: 180px;
}

.pb-marg-l-15 {
    margin-left: 15px;
}

.pb-marg-l-30 {
    margin-left: 30px;
}

.pb-marg-l-45 {
    margin-left: 45px;
}

.pb-marg-l-60 {
    margin-left: 60px;
}

.pb-marg-l-75 {
    margin-left: 75px;
}

.pb-marg-l-90 {
    margin-left: 90px;
}

.pb-marg-l-120 {
    margin-left: 120px;
}

.pb-marg-l-150 {
    margin-left: 150px;
}

.pb-marg-l-180 {
    margin-left: 180px;
}

.pb-marg-0 {
    margin: 0;
}

.pb-marg-15 {
    margin: 15px;
}

.pb-marg-30 {
    margin: 30px;
}

.pb-marg-45 {
    margin: 45px;
}

.pb-marg-60 {
    margin: 60px;
}

.pb-marg-75 {
    margin: 75px;
}

.pb-marg-90 {
    margin: 90px;
}

.pb-marg-120 {
    margin: 120px;
}

.pb-marg-150 {
    margin: 150px;
}

.pb-marg-180 {
    margin: 180px;
}

/* Dimension */

.pb-h-30 {
    height: 30px;
}

.pb-h-60 {
    height: 60px;
}

.pb-h-90 {
    height: 90px;
}

.pb-h-120 {
    height: 120px;
}

.pb-h-150 {
    height: 150px;
}

.pb-h-180 {
    height: 180px;
}

.pb-h-210 {
    height: 210px;
}

.pb-h-240 {
    height: 240px;
}

.pb-h-270 {
    height: 270px;
}

.pb-h-300 {
    height: 300px;
}

.pb-h-330 {
    height: 330px;
}

.pb-h-360 {
    height: 360px;
}

.pb-h-390 {
    height: 390px;
}

.pb-h-420 {
    height: 420px;
}

.pb-h-450 {
    height: 450px;
}

.pb-h-480 {
    height: 480px;
}

.pb-h-510 {
    height: 510px;
}

.pb-h-540 {
    height: 540px;
}

.pb-h-570 {
    height: 570px;
}

.pb-h-600 {
    height: 600px;
}

.pb-h-full {
    height: 100%;
}

.pb-w-30 {
    width: 30px;
}

.pb-w-60 {
    width: 60px;
}

.pb-w-90 {
    width: 90px;
}

.pb-w-120 {
    width: 120px;
}

.pb-w-150 {
    width: 150px;
}

.pb-w-180 {
    width: 180px;
}

.pb-w-210 {
    width: 210px;
}

.pb-w-240 {
    width: 240px;
}

.pb-w-270 {
    width: 270px;
}

.pb-w-300 {
    width: 300px;
}

.pb-w-330 {
    width: 330px;
}

.pb-w-360 {
    width: 360px;
}

.pb-w-390 {
    width: 390px;
}

.pb-w-420 {
    width: 420px;
}

.pb-w-450 {
    width: 450px;
}

.pb-w-480 {
    width: 480px;
}

.pb-w-510 {
    width: 510px;
}

.pb-w-540 {
    width: 540px;
}

.pb-w-570 {
    width: 570px;
}

.pb-w-600 {
    width: 600px;
}

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

/* Borders */

.pb-no-brd {
    border: none !important;
}

.pb-dotted {
    border-style: dotted;
}

.pb-solid {
    border-style: solid;
}

.pb-dashed {
    border-style: dashed;
}

/* Socials */

.pb-col-fb {
    color: #3b5998;
}

.pb-col-tw {
    color: #55acee;
}

.pb-col-gp {
    color: #dd4b39;
}

.pb-col-ig {
    color: #8a3ab9;
}

.pb-bg-fb {
    background: #3b5998;
}

.pb-bg-tw {
    background: #55acee;
}

.pb-bg-gp {
    background: #dd4b39;
}

.pb-bg-pn {
    background: #cb2027;
}

/* Colors */

.pb-brd-grey-1 {
    border-color: #f9f9f9;
}

.pb-brd-grey-2 {
    border-color: #ebebeb;
}

.pb-brd-grey-3 {
    border-color: #cdcdcd;
}

.pb-brd-black {
    border-color: #222;
}

.pb-brd-white {
    border-color: #fff;
}

.pb-brd-color {
    border-color: #FFD166;
}

.pb-bg-black-10 {
    background: rgba(0,0,0,0.1);
}

.pb-bg-black-20 {
    background: rgba(0,0,0,0.2);
}

.pb-bg-black-30 {
    background: rgba(0,0,0,0.3);
}

.pb-bg-black-40 {
    background: rgba(0,0,0,0.4);
}

.pb-bg-black-50 {
    background: rgba(0,0,0,0.5);
}

.pb-bg-black-60 {
    background: rgba(0,0,0,0.6);
}

.pb-bg-black-70 {
    background: rgba(0,0,0,0.7);
}

.pb-bg-black-80 {
    background: rgba(0,0,0,0.8);
}

.pb-bg-black-90 {
    background: rgba(0,0,0,0.8);
}

.pb-bg-white-10 {
    background: rgba(255,255,255,0.1);
}

.pb-bg-white-20 {
    background: rgba(255,255,255,0.2);
}

.pb-bg-white-30 {
    background: rgba(255,255,255,0.3);
}

.pb-bg-white-40 {
    background: rgba(255,255,255,0.4);
}

.pb-bg-white-50 {
    background: rgba(255,255,255,0.5);
}

.pb-bg-white-60 {
    background: rgba(255,255,255,0.6);
}

.pb-bg-white-70 {
    background: rgba(255,255,255,0.7);
}

.pb-bg-white-80 {
    background: rgba(255,255,255,0.8);
}

.pb-bg-white-90 {
    background: rgba(255,255,255,0.9);
}

.pb-bg-color-10 {
    background: rgba(255,209,102,0.1);
}

.pb-bg-color-20 {
    background: rgba(255,209,102,0.2);
}

.pb-bg-color-30 {
    background: rgba(255,209,102,0.3);
}

.pb-bg-color-40 {
    background: rgba(255,209,102,0.4);
}

.pb-bg-color-50 {
    background: rgba(255,209,102,0.5);
}

.pb-bg-color-60 {
    background: rgba(255,209,102,0.6);
}

.pb-bg-color-70 {
    background: rgba(255,209,102,0.7);
}

.pb-bg-color-80 {
    background: rgba(255,209,102,0.8);
}

.pb-bg-color-90 {
    background: rgba(255, 209, 102, 0.9);
}

.pb-font-xxl {
    font-size: 72px;
    line-height: 86px;
}

.pb-font-xl {
    font-size: 60px;
    line-height: 72px;
}

.pb-font-l {
    font-size: 48px;
    line-height: 60px;
}

.pb-font-m {
    font-size: 36px;
    line-height: 48px;
}

.pb-font-s {
    font-size: 24px;
    line-height: 36px;
}

.pb-font-xs {
    font-size: 20px;
    line-height: 32px;
}

.pb-font-xxs {
    font-size: 16px;
    line-height: 28px;
}

.pb-font-tiny {
    font-weight: 100;
}

.pb-font-normal {
    font-weight: 300;
}

.pb-font-medium {
    font-weight: 500;
}

.pb-font-bold {
    font-weight: 700;
}

.pb-font-heavy {
    font-weight: 900;
}

.pb-color-black {
    color: #000;
}

.pb-color-white {
    color: #fff;
}

.pb-color-grey-1 {
    color: #f9f9f9;
}

.pb-color-grey-2 {
    color: #ebebeb;
}

.pb-color-grey-3 {
    color: #cdcdcd;
}

.pb-color-grey-4 {
    color: #aaaaaa;
}

.pb-color {
    color: #FFD166;
}

.pb-bg-white {
    background: #fff;
}

.pb-bg-black {
    background: #000;
}

.pb-bg-color {
    background: #FFD166;
}

.pb-bg-grey-1 {
    background: #f9f9f9;
}

.pb-bg-grey-2 {
    background: #ebebeb;
}

.pb-bg-grey-3 {
    background: #cdcdcd;
}

/* Animations */

.pb-animate-1 {
    transition: all ease-in-out 0.1s;
    -moz-transition: all ease-in-out 0.1s;
    -webkit-transition: all ease-in-out 0.1s;
    -o-transition: all ease-in-out 0.1s;
    -ms-transition: all ease-in-out 0.1s;
}

.pb-animate-2 {
    transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
}

.pb-animate-3 {
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
}

.pb-animate-4 {
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.5s;
}

.pb-animate-5 {
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
}

.pb-animate-6 {
    transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
}

.pb-animate-7 {
    transition: all ease-in-out 0.7s;
    -moz-transition: all ease-in-out 0.7s;
    -webkit-transition: all ease-in-out 0.7s;
    -o-transition: all ease-in-out 0.7s;
    -ms-transition: all ease-in-out 0.7s;
}

.pb-animate-8 {
    transition: all ease-in-out 0.8s;
    -moz-transition: all ease-in-out 0.8s;
    -webkit-transition: all ease-in-out 0.83s;
    -o-transition: all ease-in-out 0.8s;
    -ms-transition: all ease-in-out 0.8s;
}

.pb-animate-9 {
    transition: all ease-in-out 0.9s;
    -moz-transition: all ease-in-out 0.9s;
    -webkit-transition: all ease-in-out 0.9s;
    -o-transition: all ease-in-out 0.9s;
    -ms-transition: all ease-in-out 0.9s;
}

/* Dots */

.pb-dot-tl-white {
    position: absolute;
    z-index: 99;
    top: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #fff;
}

.pb-dot-tr-white {
    position: absolute;
    z-index: 99;
    top: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #fff;
}

.pb-dot-bl-white {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #fff;
}

.pb-dot-br-white {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #fff;
}

.pb-dot-tl-black {
    position: absolute;
    z-index: 99;
    top: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #000;
}

.pb-dot-tr-black {
    position: absolute;
    z-index: 99;
    top: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #000;
}

.pb-dot-bl-black {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #000;
}

.pb-dot-br-black {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #000;
}

.pb-dot-tl-theme {
    position: absolute;
    z-index: 99;
    top: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #ffd166;
}

.pb-dot-tr-theme {
    position: absolute;
    z-index: 99;
    top: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #ffd166;
}

.pb-dot-bl-theme {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    left: 30px;
    height: 10px;
    width: 10px;
    background: #ffd166;
}

.pb-dot-br-theme {
    position: absolute;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    height: 10px;
    width: 10px;
    background: #ffd166;
}